From 57e3b461cefcb7df27547bc5c9e2d1d3182b2f5b Mon Sep 17 00:00:00 2001 From: roman-rezinkin Date: Sat, 9 Oct 2021 16:41:26 -0400 Subject: [PATCH] Initial Commit for input type change Signed-off-by: roman-rezinkin --- cypress/support/commands.js | 2 +- cypress/support/page_objects/mainPage.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cypress/support/commands.js b/cypress/support/commands.js index e3b9b67a0d9a..040bd8a99c52 100644 --- a/cypress/support/commands.js +++ b/cypress/support/commands.js @@ -7,7 +7,7 @@ // commands please read more here: // https://on.cypress.io/custom-commands // *********************************************** -// +// @author Roman Rezinkin roman.rezinkin@hotmail.com // // -- This is a parent command -- // Cypress.Commands.add('login', (email, password) => { ... }) diff --git a/cypress/support/page_objects/mainPage.js b/cypress/support/page_objects/mainPage.js index 536f54265e22..349bec68158c 100644 --- a/cypress/support/page_objects/mainPage.js +++ b/cypress/support/page_objects/mainPage.js @@ -71,7 +71,7 @@ export class _mainPage { // Redirected to new URL, feed details // - cy.get('input[type="email"]').type(userCred.username) + cy.get('input[type="text"]').type(userCred.username) cy.get('input[type="password"]').type(userCred.password) cy.get('button:contains("SIGN UP")').click()