diff options
Diffstat (limited to 'vid-webpack-master/cypress/support/elements/element.actions.ts')
-rw-r--r-- | vid-webpack-master/cypress/support/elements/element.actions.ts | 9 |
1 files changed, 9 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); |