brithwulf
brithwulf

Reputation: 548

Adding custom browser in Katalon Studio

I just want to know if in Katalon Studio is possible to add custom browser for an execution ? for example: Opera.

I've seen many things in internet and have tried to add custom browser via project settings. Project Settings-->Desired Capabilities-->Custom

Upvotes: 1

Views: 878

Answers (2)

Mate Mrše
Mate Mrše

Reputation: 8414

You will need to use Opera driver with Selenium. So instead of using WebUI.openBrowser('wwww.example.com'), use the following:

System.setProperty("webdriver.opera.driver", "D:/path-to-operadriver/operadriver_win64/operadriver.exe")
WebDriver driver = new OperaDriver()
driver.get('www.example.com')

Note: download the Opera driver from here.

Upvotes: 1

Mate Mrše
Mate Mrše

Reputation: 8414

Yes, you can choose from a number of browsers:

enter image description here

Katalon will remember the last one used for the next time you click the "Run" button.

Also, you can change the default browser in Project Settings > Execution > Default execution.

Upvotes: 0

Related Questions