I am trying to run my test cases on Chrome and I had copied the path in the Properties file,but still console is throwing annoying statements like: ERROR: The path to the chromedriver executable must be set by the webdriver.chrome.driver system property; for more information, see http://code.google.com/p/selenium/wiki/ChromeDriver. The latest version can be downloaded from http://code.google.com/p/chromium/downloads/list FAILED CONFIGURATION: @BeforeTest startWebSession java.lang.NullPointerException

link|improve this question

0% accept rate
feedback

3 Answers

This is how do I initialize the ChromeDriver:

public RegulationUI() throws Exception{
   ChromeDriverService service = ChromeDriverService.createDefaultService();
   File file = new File(RegulationUI.class.getResource("/chromedriver.exe").toURI());
   System.setProperty(ChromeDriverService.CHROME_DRIVER_EXE_PROPERTY, file.getAbsolutePath());                
   ChromeOptions options = new ChromeOptions();
   options.addArguments("--start-maximized");
   driver = new ChromeDriver(service,options);
}

BTW my test class is named RegulationUI

Try this, it works for me and moreover, I know that this is "multicomputer" solution - our project is in subversion and this way everybody can run it, even if we have differently setup where exactly on disk the "working folder" for IDE is

link|improve this answer
Hey Pavel ,I tried with:<pre><code>if (BrowserType.toLowerCase().equals("chrome")) { DesiredCapabilities chromecapabilities = DesiredCapabilities.chrome(); chromecapabilities.setCapability("chrome.binary", "C:/workspaceNewSFDC/HI_SalesForce"); ChromeDriverService service = new ChromeDriverService.Builder() .usingChromeDriverExecutable(new File("C:/workspaceNewSFDC/HI_SalesForce/chromedriver.exe")) .usingAnyFreePort() .build(); service.start(); driver = new ChromeDriver(service); } } – katie Jan 31 at 13:05
I have Java for this and am not good programmer, but: I believe the path should always contain also "chromedriver.exe" in it – Pavel Janicek Jan 31 at 13:36
I had already pasted the path of ChromeDriver.exe in my properties file.But every-time I run my Test-cases Console is throwing the same error! – katie Feb 6 at 12:05
feedback

One thing I have found is that the Chrome driver cannot be started from within Eclipse. It must be run from a command prompt. At least on Windows 7 64-bit. Trying to run it from within Eclipse produces this exception: Exception in thread "main" java.lang.IllegalStateException: The webdriver.chrome.driver system property defined chromedriver executable does not exist: C:\Windows\System32\chromedriver.exe

This problem only occurs for Chrome. IE and FireFox work fine from within Eclipse.

link|improve this answer
feedback

Download the chrome driver from http://code.google.com/p/chromedriver/downloads/list

Initialize your driver object in the following manner -

System.setProperty("webdriver.chrome.driver","C:\\chromedriver.exe");

    WebDriver driver = new ChromeDriver();

By doing this the chrome driver works properly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.