How to run Selenium WebDriver test cases in Chrome?

Prince picture Prince · Dec 5, 2012 · Viewed 612.7k times · Source

I tried this

WebDriver driver = new ChromeDriver();

But i'm getting the error as

Failed tests: setUp(com.TEST): The path to the driver executable must be set by the webdriver.chrome.driver system property; for more information, see code here . The latest version can be downloaded from Link

How can I make Chrome to test the Selenium-WebDriver test cases?

Answer

aimbire picture aimbire · Dec 5, 2012

You need to download the executable driver from: ChromeDriver Download

Then all you need to do is use the following before creating the driver object (already shown in the correct order):

System.setProperty("webdriver.chrome.driver", "/path/to/chromedriver");
WebDriver driver = new ChromeDriver();

This was extracted from the most useful guide from the ChromeDriver Documentation.