How to get Chrome Driver Path in Katalon Studio v10 free

Intro

After a hiatus on Test/Script Development, I came back, installing Katalon Studio v10 free, but now…

The issue

When I look at one of the WebDriverUtils class that I had tweaked to conform to the new decisions, I see something weird…

com.kms.katalon.core.webui.driver.DriverFactory no longer seems to have a method for getting the Chrome driver path!!

How do we get the Chrome driver path in Katalon Studio v10 free?

1 Like

Edit: I went through the notes on version 10 and saw the below:

Refactored DriverFactory.
Moved getChromeDriverPath to ChromeDriverUtil. To use getChromeDriverPath(), add import com.kms.katalon.core.webui.driver.chrome and retrieve the path with:
String chromeDriverPath = ChromeDriverUtil.getChromeDriverPath()


How about just putting in the pathway to your Chrome driver as the second parameter? On my machine, with an older version of KS, it is:

D:\Apps\Katalon_Studio_Windows_64\configuration\resources\drivers\chromedriver_win32

2 Likes