Reputation: 31
When I launch Selenium's web driver (Chromedriver), a console window (chromedriver.exe) runs and it opens chrome.
I need to know how i can change name chromedriver.exe?
It is a possible? I am using C#.
Upvotes: 1
Views: 1075
Reputation: 1
Actually, you can change the name of the driver, but then you also have to update the System.getProperty("path/to/renamed_driver_executable")
to make the renamed driver work.
Upvotes: 0