From 4636353a8300993c52152b9da65389c9ccf8959b Mon Sep 17 00:00:00 2001 From: Alexey Sandler Date: Thu, 12 Dec 2019 11:52:18 +0200 Subject: Add edit button on service context menu. Issue-ID: VID-724 Signed-off-by: Alexey Sandler Change-Id: I6f050e77b41e57016a01c622b0bb09e5e36155e2 --- vid-webpack-master/cypress/support/elements/element.input.actions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vid-webpack-master/cypress/support/elements') 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); -- cgit 1.2.3-korg