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
In Taiko/Gauge Framework, we try to implement Basic Authorization with Base64 encoding method to launch a website. It works fine. But, when we try to login as a user which is a form on the application flow, it is not getting logged in. When we do it manually, there is no issue.
The code is something like this.
goto(url,{headers:{'Authorization':'Basic <Base64encodedcreds>'}}) => This works well.
On the login page, I need to give the user name (EmailID) and password as below:
I have the following questions:
How to overwrite the password set for the URL using headers? I am not able to login with the particular valid credentials as a user on the login page. It just stays on the same page without throwing any error. How to resolve this issue?
The text was updated successfully, but these errors were encountered:
In Taiko/Gauge Framework, we try to implement Basic Authorization with Base64 encoding method to launch a website. It works fine. But, when we try to login as a user which is a form on the application flow, it is not getting logged in. When we do it manually, there is no issue.
The code is something like this.
goto(url,{headers:{'Authorization':'Basic <Base64encodedcreds>'}})
=> This works well.On the login page, I need to give the user name (EmailID) and password as below:
I have the following questions:
How to overwrite the password set for the URL using headers? I am not able to login with the particular valid credentials as a user on the login page. It just stays on the same page without throwing any error. How to resolve this issue?
The text was updated successfully, but these errors were encountered: