-3

I am getting the below error when I call chrome browser using chrome driver. The error is :

error screenshot

the path to the driver executable must set by the webdriver

I am using:

  • Chrome 63
  • chromedriver 2.34
  • Selenium 3.8.1 (java)
  • Java 8
Eugene S
  • 6,709
  • 8
  • 57
  • 91
Subra
  • 1
  • 1
  • 1
    Edit your question and put the code in it. do not use images of code: https://meta.stackoverflow.com/questions/285551/why-not-upload-images-of-code-on-so-when-asking-a-question/285557#285557 – Nic3500 Dec 18 '17 at 23:42
  • Don't summarize the error message... copy and paste it in full. Google the error message. You will find your answer. – JeffC Dec 19 '17 at 01:19
  • Possible duplicate of [Unable to invoke Google browser](https://stackoverflow.com/questions/46587942/unable-to-invoke-google-browser) – undetected Selenium Dec 19 '17 at 16:00
  • Thanks for the reply, the problem was solved – Subra Dec 20 '17 at 02:14

1 Answers1

0

I think your problem is the case. The system property value should have only small characters, like so:

System.setProperty("webdriver.chrome.driver", "C:/selenium/chromedriver.exe");
Eugene S
  • 6,709
  • 8
  • 57
  • 91