diff options
Diffstat (limited to 'vid-webpack-master/cypress/support/elements')
-rw-r--r-- | vid-webpack-master/cypress/support/elements/element.actions.ts | 9 | ||||
-rw-r--r-- | vid-webpack-master/cypress/support/elements/element.select.actions.ts | 13 |
2 files changed, 22 insertions, 0 deletions
diff --git a/vid-webpack-master/cypress/support/elements/element.actions.ts b/vid-webpack-master/cypress/support/elements/element.actions.ts index 44e85830c..6d63e9fda 100644 --- a/vid-webpack-master/cypress/support/elements/element.actions.ts +++ b/vid-webpack-master/cypress/support/elements/element.actions.ts @@ -8,6 +8,7 @@ declare namespace Cypress { hasClass : typeof hasClass; getElementByDataTestsId : typeof getElementByDataTestsId; getTagElementContainsText : typeof getTagElementContainsText; + isElementNotContainsAttr : typeof isElementNotContainsAttr; } } @@ -18,6 +19,13 @@ function isElementContainsAttr(id : string, attr: string) : void { cy.getElementByDataTestsId(id).should('have.attr', attr); } +/************************************************************************* + isElementContainsAttr : check if element with id not contains some attribute + *************************************************************************/ +function isElementNotContainsAttr(id : string, attr: string) : void { + cy.getElementByDataTestsId(id).should('not.have.attr', attr); +} + /********************************************************* isElementDisabled : check if element with id is disabled *********************************************************/ @@ -54,3 +62,4 @@ Cypress.Commands.add('isElementEnabled', isElementEnabled); Cypress.Commands.add('hasClass', hasClass); Cypress.Commands.add('getElementByDataTestsId', getElementByDataTestsId); Cypress.Commands.add('getTagElementContainsText', getTagElementContainsText); +Cypress.Commands.add('isElementNotContainsAttr', isElementNotContainsAttr); diff --git a/vid-webpack-master/cypress/support/elements/element.select.actions.ts b/vid-webpack-master/cypress/support/elements/element.select.actions.ts index 1f8eea024..4df62168f 100644 --- a/vid-webpack-master/cypress/support/elements/element.select.actions.ts +++ b/vid-webpack-master/cypress/support/elements/element.select.actions.ts @@ -2,6 +2,7 @@ declare namespace Cypress { interface Chainable { selectDropdownOptionByText : typeof selectDropdownOptionByText; checkIsOptionSelected : typeof checkIsOptionSelected; + validateSelectOptions: typeof validateSelectOptions; } } @@ -21,6 +22,18 @@ function checkIsOptionSelected(selectId : string, optionText : string) : void { .should('have.value', optionText) } + +/************************************************ + validate the options of selected drop down + ************************************************/ +function validateSelectOptions(rolesCriteria: string, values: string[]){ + values.forEach((value)=>{ + selectDropdownOptionByText(rolesCriteria, value); + checkIsOptionSelected(rolesCriteria, value); + }); +} + Cypress.Commands.add('selectDropdownOptionByText', selectDropdownOptionByText); Cypress.Commands.add('checkIsOptionSelected', checkIsOptionSelected); +Cypress.Commands.add('validateSelectOptions', validateSelectOptions); |