Merge from ecomp 718fd196 - Modern UI
Issue-ID: VID-378
Change-Id: I2736b98426e324ec3aa233b034229ba84d99839f
Signed-off-by: Ittay Stern <ittay.stern@att.com>
diff --git a/vid-webpack-master/cypress/support/elements/element.actions.ts b/vid-webpack-master/cypress/support/elements/element.actions.ts
index 44e8583..6d63e9f 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 @@
hasClass : typeof hasClass;
getElementByDataTestsId : typeof getElementByDataTestsId;
getTagElementContainsText : typeof getTagElementContainsText;
+ isElementNotContainsAttr : typeof isElementNotContainsAttr;
}
}
@@ -18,6 +19,13 @@
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('hasClass', hasClass);
Cypress.Commands.add('getElementByDataTestsId', getElementByDataTestsId);
Cypress.Commands.add('getTagElementContainsText', getTagElementContainsText);
+Cypress.Commands.add('isElementNotContainsAttr', isElementNotContainsAttr);