refactor: refs #8581 enhance fillInForm
This commit is contained in:
parent
e0459f2016
commit
94cc4f2950
|
@ -142,36 +142,41 @@ Cypress.Commands.add('countSelectOptions', (selector, option) => {
|
||||||
cy.get('.q-menu .q-item').should('have.length', option);
|
cy.get('.q-menu .q-item').should('have.length', option);
|
||||||
});
|
});
|
||||||
|
|
||||||
Cypress.Commands.add('fillInForm', (obj, form = '.q-form > .q-card') => {
|
Cypress.Commands.add(
|
||||||
cy.waitForElement(form);
|
'fillInForm',
|
||||||
cy.get(`${form} input`).each(([el]) => {
|
(obj, { form = '.q-form > .q-card', attr = 'aria-label' }) => {
|
||||||
cy.wrap(el)
|
cy.waitForElement(form);
|
||||||
.invoke('attr', 'aria-label')
|
cy.get(`${form} input`).each(([el]) => {
|
||||||
.then((ariaLabel) => {
|
cy.wrap(el)
|
||||||
const field = obj[ariaLabel];
|
.invoke('attr', attr)
|
||||||
if (!field) return;
|
.then((ariaLabel) => {
|
||||||
|
const field = obj[ariaLabel];
|
||||||
|
if (!field) return;
|
||||||
|
|
||||||
const { type, val } = field;
|
const { type, val } = field;
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case 'select':
|
case 'select':
|
||||||
cy.selectOption(el, val);
|
cy.selectOption(el, val);
|
||||||
break;
|
break;
|
||||||
case 'date':
|
case 'date':
|
||||||
cy.get(el).type(val.split('-').join(''));
|
cy.get(el).type(
|
||||||
break;
|
`{selectall}{backspace}${val.split('-').join('')}`,
|
||||||
case 'time':
|
);
|
||||||
cy.get(el).click();
|
break;
|
||||||
cy.get('.q-time .q-time__clock').contains(val.h).click();
|
case 'time':
|
||||||
cy.get('.q-time .q-time__clock').contains(val.m).click();
|
cy.get(el).click();
|
||||||
cy.get('.q-time .q-time__link').contains(val.x).click();
|
cy.get('.q-time .q-time__clock').contains(val.h).click();
|
||||||
break;
|
cy.get('.q-time .q-time__clock').contains(val.m).click();
|
||||||
default:
|
cy.get('.q-time .q-time__link').contains(val.x).click();
|
||||||
cy.wrap(el).type(val);
|
break;
|
||||||
break;
|
default:
|
||||||
}
|
cy.wrap(el).type(`{selectall}{backspace}${val}`);
|
||||||
});
|
break;
|
||||||
});
|
}
|
||||||
});
|
});
|
||||||
|
});
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
Cypress.Commands.add('checkOption', (selector) => {
|
Cypress.Commands.add('checkOption', (selector) => {
|
||||||
cy.get(selector).find('.q-checkbox__inner').click();
|
cy.get(selector).find('.q-checkbox__inner').click();
|
||||||
|
@ -381,6 +386,7 @@ Cypress.Commands.add('clickButtonWith', (type, value) => {
|
||||||
Cypress.Commands.add('clickButtonWithIcon', (iconClass) => {
|
Cypress.Commands.add('clickButtonWithIcon', (iconClass) => {
|
||||||
cy.get(`.q-icon.${iconClass}`).parent().click();
|
cy.get(`.q-icon.${iconClass}`).parent().click();
|
||||||
});
|
});
|
||||||
|
|
||||||
Cypress.Commands.add('clickButtonWithText', (buttonText) => {
|
Cypress.Commands.add('clickButtonWithText', (buttonText) => {
|
||||||
cy.get('.q-btn').contains(buttonText).click();
|
cy.get('.q-btn').contains(buttonText).click();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue