Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in DevOps and Agile by (29.3k points)

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?

1 Answer

0 votes
by (50.2k points)

First, check the version of your chrome and download chromedriver accordingly

Then while creating test cases give the path to that chrome driver like this

System.setProperty("webdriver.chrome.driver", "/path/to/chromedriver");

WebDriver driver = new ChromeDriver();

Thus, you can run Selenium WebDriver test cases in Chrome.

Browse Categories

...