早些时候我把Chrome二进制文件chromedriver.exe放在了C:/Windows目录下,Watir从那里挑选了它。现在我不得不把我的项目移到另一台机器上,这样我就不能硬编码可执行路径了。我还希望二进制文件和我们的代码一起保存在Git上,而不是让每个测试工程师在新版本发布时手动更新二进制文件。
现在我已经把Chrome二进制文件放在了一个绝对路径上,但是没有找到它。下面是我尝试的方法(hooks.rb):
Before do
puts "inside hooks in before"
profile = Selenium::WebDriver::Chrome::Profile.new
profile['download.prompt_for_download'] = false
profile['download.default_directory'] = File.join(File.absolute_path('../..', File.dirname(__FILE__)),"browsers/chromedriver.exe")
@browser = Watir::Browser.new :chrome, :profile => profile
end
输出为:
inside hooks in before
Selenium::WebDriver::Error::WebDriverError: Unable to find the chromedriver executable. Please download the server from http://chromedriver.storage.googleapis.com/index.html and place it somewhere on your PATH. More info at http://code.google.com/p/selenium/wiki/ChromeDriver.
C:/Ruby193/lib/ruby/gems/1.9.1/gems/selenium-webdriver-2.44.0/lib/selenium/webdriver/chrome/service.rb:21:in `executable_path'
C:/Ruby193/lib/ruby/gems/1.9.1/gems/selenium-webdriver-2.44.0/lib/selenium/webdriver/chrome/service.rb:34:in `default_service'
C:/Ruby193/lib/ruby/gems/1.9.1/gems/selenium-webdriver-2.44.0/lib/selenium/webdriver/chrome/bridge.rb:14:in `initialize'
C:/Ruby193/lib/ruby/gems/1.9.1/gems/selenium-webdriver-2.44.0/lib/selenium/webdriver/common/driver.rb:37:in `new'
C:/Ruby193/lib/ruby/gems/1.9.1/gems/selenium-webdriver-2.44.0/lib/selenium/webdriver/common/driver.rb:37:in `for'
C:/Ruby193/lib/ruby/gems/1.9.1/gems/selenium-webdriver-2.44.0/lib/selenium/webdriver.rb:67:in `for'
C:/Ruby193/lib/ruby/gems/1.9.1/gems/watir-webdriver-0.6.11/lib/watir-webdriver/browser.rb:46:in `initialize'
C:/Users/Admin/watircukepractice/test_puppies/features/support/hooks.rb:11:in `new'
C:/Users/Admin/watircukepractice/test_puppies/features/support/hooks.rb:11:in `Before'
我在Windows 7上,使用Ruby版本1.9.3p551,我指的是教程http://watirwebdriver.com/chrome/。
我如何告诉Watir(和Selenium-WebDriver)chromedriver.exe的位置?
4条答案
按热度按时间hjqgdpho1#
解决方案1 - Selenium::Web驱动程序::Chrome.驱动程序路径=
有一个
Selenium::WebDriver::Chrome.driver_path=
方法可以指定chromedriver二进制:解答2 -在浏览器初始化期间指定:driver_path
作为一种选择,你也可以在初始化浏览器时指定驱动程序路径。这是一个更好的选择,因为你不需要有Selenium代码,但是如果你在不同的地方初始化浏览器,这将是重复的。
解决方案3 -更新环境['PATH']
当我最初回答这个问题时,不管什么原因,我都无法让上面的解决方案工作。当Selenium-WebDriver在中启动驱动程序时,似乎没有使用设置值。虽然第一个解决方案是推荐的方法,但这是一个替代方法。
另一种选择是通过编程方式将所需的目录添加到路径中,该路径存储在
ENV['PATH']
中。您可以在Selenium::WebDriver::Platform中通过检查路径中的任何文件夹中是否存在可执行文件来查看二进制文件的位置(从版本2.44.0开始):要指定包含二进制文件的文件夹,只需更改
ENV['PATH']
(以附加目录):mmvthczy2#
在
Selenium webdriver 3.x
配置中,更改:**驱动程序路径:**定义chromedriver chromedriver page的路径
**binary:**定义二进制chrome应用chromepage的路径。您可以使用chrome便携版来使用不同版本的chrome。
7gcisfzg3#
直接更新您的Selenium
driver_path
。只需在启动新的Chrome浏览器窗口之前调用此命令即可:
当然,将路径更改为您的
chromedriver
所在的位置。注意:
driver_path
必须是字符串,所以不要传入File
或Path
对象。iyzzxitl4#
这对我很有效: