Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have used this code in MyEclipse for Chrome driver..

System.setProperty("webdriver.chrome.driver","D:\selenium\chromedriver_win_26.0.1383.0.zip\chromedriver.exe");

But found compiled time error that:

'Invalid escape sequence (valid ones are \b \t \n \f \r \" \' \\ )

But path that i have given is correct.

I unable to understand how can i sort this error, if you have any idea about that then please give me solution for this.

Thanx in advance.

share|improve this question

2 Answers

Try this:

D:\\selenium\\chromedriver_win_26.0.1383.0.zip\\chromedriver.exe

instead of

D:\selenium\chromedriver_win_26.0.1383.0.zip\chromedriver.exe
share|improve this answer
It works .. thnx :) – Sonia Sharma Mar 5 at 13:28

Instead of setting this property, you can set the PATH env variable pointing to the directory of the Chrome Driver, so that you don't require code changes once you move code on to other machine

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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