无法在IE9浏览器上运行Selenium Ruby Webdriver

无法在IE9浏览器上运行Selenium Ruby Webdriver,ruby,internet-explorer,selenium,webdriver,selenium-webdriver,Ruby,Internet Explorer,Selenium,Webdriver,Selenium Webdriver,我在尝试运行Selenium Ruby Web驱动程序时遇到以下错误 IE9浏览器上的脚本,浏览器未启动且低于错误 显示: Selenium::WebDriver::Error::WebDriverError: Unable to find standalone executable . Please download the IEDriverServer from http://code.google.com/p/selenium/down loads/list and place

我在尝试运行Selenium Ruby Web驱动程序时遇到以下错误 IE9浏览器上的脚本,浏览器未启动且低于错误 显示:

  Selenium::WebDriver::Error::WebDriverError: Unable to find standalone executable
  . Please download the IEDriverServer from http://code.google.com/p/selenium/down
  loads/list and place the executable on your PATH.

 Below are lines of code that I have tried:

  browser=Selenium::WebDriver.for :ie
  @driver.get CONFIG['url']

如果我需要在这个案例中执行更多步骤,以便能够使用Ruby Selenium Webdriver在IE9浏览器上运行脚本,请指导我。非常感谢。

我认为错误日志是不言自明的。接下来,IEDriver必须单独下载,就像你现在可能正在为chromedriver做的那样。
创造者的一个很好的解释。您可以从错误日志中的链接下载驱动程序zip并将其添加到您的路径中。阅读更多@

我认为错误日志是不言自明的。接下来,IEDriver必须单独下载,就像你现在可能正在为chromedriver做的那样。 创造者的一个很好的解释。您可以从错误日志中的链接下载驱动程序zip并将其添加到您的路径中。阅读更多@