diff options
author | Alexey Sandler <alexey.sandler@intl.att.com> | 2019-12-12 11:52:18 +0200 |
---|---|---|
committer | Alexey Sandler <alexey.sandler@intl.att.com> | 2019-12-12 11:52:18 +0200 |
commit | 4636353a8300993c52152b9da65389c9ccf8959b (patch) | |
tree | 051f397b185b7d733e4e68fc92d31d711ff693b4 /vid-webpack-master/cypress/support | |
parent | d8e883b94b1649be446ae4651722f35251a589f3 (diff) |
Add edit button on service context menu.
Issue-ID: VID-724
Signed-off-by: Alexey Sandler <alexey.sandler@intl.att.com>
Change-Id: I6f050e77b41e57016a01c622b0bb09e5e36155e2
Diffstat (limited to 'vid-webpack-master/cypress/support')
-rw-r--r-- | vid-webpack-master/cypress/support/elements/element.input.actions.ts | 2 |
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); |