Using Chrome Driver with Selenium 2

前端 未结 7 1333
情深已故
情深已故 2020-12-28 16:30

I\'m trying to use Chrome Drive to execute some of my tests, which are working perfectly with Firefox, but I\'m not being able to execute them, I\'m already verified the req

7条回答
  •  一生所求
    2020-12-28 17:27

    Download the ChromeDriver.exe from http://code.google.com/p/selenium/downloads/list then add the system property like so:

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

提交回复
热议问题