How to Authenticate Automatically When You Launch a Web Application from Katalon Studio in Firefox

enter image description here

I am doing test cases using Katalon Studio. The problem is that when I run the test case in Firefox, it shows me the "Authentication Required" popup. Instead, when I use Chrome or Explorer, this does not happen. How can I get rid of this popup when using Firefox?

+4
source share
2 answers

: WebUI.openBrowser( " http://username:password@WebsiteURL" ) WebUI.openBrowser( "username: password @WebsiteURL" )

+4

WebUI.Authenticate(url, username ,passsword, timeoutseconds).

, .

-1

Source: https://habr.com/ru/post/1682103/


All Articles