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
|
feedback
|
|
This is how do I initialize the ChromeDriver:
BTW my test class is named 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 | |||||||
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. | |||
|
feedback
|
|
Download the chrome driver from http://code.google.com/p/chromedriver/downloads/list Initialize your driver object in the following manner -
By doing this the chrome driver works properly. | |||
|
feedback
|