You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Atlas version 1.8.0
I am trying to fill out a login form like this:
onSite().onLoginPage().open();
onSite().onLoginPage().loginForm().inputByName("username").sendKeys(cfg.login());
onSite().onLoginPage().loginForm().inputById("qa-password").sendKeys(cfg.password());
onSite().onLoginPage().loginForm().buttonByText("LOGIN").click();
After each command is executed, the page is reloaded
For example, enter the name to the login field. Then the page is reloaded. Accordingly, the login field becomes empty.
Then we enter the password to the password field . The page reloads again, etc.
Expected results:
The page should not be reloaded each time we interact with element.
Actual results:
Page reloaded each time
The text was updated successfully, but these errors were encountered:
Atlas version 1.8.0
I am trying to fill out a login form like this:
onSite().onLoginPage().open();
onSite().onLoginPage().loginForm().inputByName("username").sendKeys(cfg.login());
onSite().onLoginPage().loginForm().inputById("qa-password").sendKeys(cfg.password());
onSite().onLoginPage().loginForm().buttonByText("LOGIN").click();
After each command is executed, the page is reloaded
For example, enter the name to the login field. Then the page is reloaded. Accordingly, the login field becomes empty.
Then we enter the password to the password field . The page reloads again, etc.
Expected results:
The page should not be reloaded each time we interact with element.
Actual results:
Page reloaded each time
The text was updated successfully, but these errors were encountered: