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