This commit is contained in:
iw0 2024-04-11 10:47:22 +02:00
parent d5f44954b9
commit a940829a12

View File

@ -315,7 +315,7 @@ const enterTitleAndActivateCountryDropdown = {
expects: "mutation",
/**@param {MutationRecord} mut */
match: mut => matchDropdown(mut, "test-name-titel", "open"),
/**@param {MutationCallback} mut */
/**@param {MutationRecord} mut */
execute: mut => {
ensureSettingsProp("addr__title", v => {
const selectList = getDropdownList(mut);
@ -330,9 +330,11 @@ const enterTitleAndActivateCountryDropdown = {
}
}
/** @type Stage */
const enterCountry = {
name: "enterCountry",
expects: "mutation",
/** @param {MutationRecord} mut */
match: mut => matchDropdown(mut, "test-adresse-land", "open"),
execute: () => {
ensureSettingsProp("addr__country", v => {
@ -398,6 +400,7 @@ const continueToPayout = {
execute: () => document.activeElement.dispatchEvent(_clickEv()),
}
/** @type Stage */
const enterPaymentDetails = {
name: "enterPaymentDetails",
match: node => node.querySelector(".entschaedigung"),