summaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/cypress/support/elements/element.input.actions.ts
diff options
context:
space:
mode:
authorEylon Malin <eylon.malin@intl.att.com>2019-12-12 12:32:59 +0000
committerGerrit Code Review <gerrit@onap.org>2019-12-12 12:32:59 +0000
commitf026c319fabf3431ddce1d642a2bbb596b65beb5 (patch)
treee2f1484046b604d531e2c03faef98400d187e1c0 /vid-webpack-master/cypress/support/elements/element.input.actions.ts
parent8178f5a1c0ba63fdf74f4cb58a8b3c0f549975dc (diff)
parent4636353a8300993c52152b9da65389c9ccf8959b (diff)
Merge "Add edit button on service context menu."
Diffstat (limited to 'vid-webpack-master/cypress/support/elements/element.input.actions.ts')
-rw-r--r--vid-webpack-master/cypress/support/elements/element.input.actions.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/vid-webpack-master/cypress/support/elements/element.input.actions.ts b/vid-webpack-master/cypress/support/elements/element.input.actions.ts
index 4e6b5e879..b52a35ede 100644
--- a/vid-webpack-master/cypress/support/elements/element.input.actions.ts
+++ b/vid-webpack-master/cypress/support/elements/element.input.actions.ts
@@ -42,7 +42,7 @@ function focusInput(id : string) : void {
test if input with id contains some text
****************************************/
function shouldInputContainsText(id : string, text : string) : void {
- cy.getElementByDataTestsId(id).contains('text')
+ cy.getElementByDataTestsId(id).contains(text)
}
Cypress.Commands.add('typeToInput', typeToInput);