gpt4 book ai didi

ruby - `selenium-webdriver` ruby​​ gem 无法与 Ubuntu 14.04 上的 chromedriver 连接

转载 作者:数据小太阳 更新时间:2023-10-29 06:54:55 29 4
gpt4 key购买 nike

我正在运行 Ubuntu 16.04,我正在尝试使用 chromedriver 在 ruby​​ 中运行 headless Chrome 浏览器。

我已经使用 these instructions 在 Ubuntu 上安装了 chromedriver然后我通过 ruby​​ irb 控制台运行它:

require 'selenium-webdriver'

options = Selenium::WebDriver::Chrome::Options.new
options.add_argument('--headless')

@driver = Selenium::WebDriver.for(:chrome, options: options)

Traceback (most recent call last):
10: from /home/weefee/.rvm/rubies/ruby-2.5.1/bin/irb:11:in `<main>'
9: from (irb):5
8: from /home/weefee/.rvm/gems/ruby-2.5.1/gems/selenium-webdriver-3.141.0/lib/selenium/webdriver.rb:86:in `for'
7: from /home/weefee/.rvm/gems/ruby-2.5.1/gems/selenium-webdriver-3.141.0/lib/selenium/webdriver/common/driver.rb:44:in `for'
6: from /home/weefee/.rvm/gems/ruby-2.5.1/gems/selenium-webdriver-3.141.0/lib/selenium/webdriver/common/driver.rb:44:in `new'
5: from /home/weefee/.rvm/gems/ruby-2.5.1/gems/selenium-webdriver-3.141.0/lib/selenium/webdriver/chrome/driver.rb:44:in `initialize'
4: from /home/weefee/.rvm/gems/ruby-2.5.1/gems/selenium-webdriver-3.141.0/lib/selenium/webdriver/common/service.rb:69:in `start'
3: from /home/weefee/.rvm/gems/ruby-2.5.1/gems/selenium-webdriver-3.141.0/lib/selenium/webdriver/common/socket_lock.rb:39:in `locked'
2: from /home/weefee/.rvm/gems/ruby-2.5.1/gems/selenium-webdriver-3.141.0/lib/selenium/webdriver/common/service.rb:72:in `block in start'
1: from /home/weefee/.rvm/gems/ruby-2.5.1/gems/selenium-webdriver-3.141.0/lib/selenium/webdriver/common/service.rb:142:in `connect_until_stable'
Selenium::WebDriver::Error::WebDriverError (unable to connect to chromedriver 127.0.1.1:9515)

关于如何修复它的任何想法?一些注意事项:

  1. 有些人似乎遇到了 rbenv 及其设置的 shim 的问题。我根本没有使用 rbenv,所以这与这里无关。

  2. 当我在我的 OSx 笔记本电脑上尝试时,上面的方法有效。当然,我可以使用 brew install chromedriver 轻松安装 chromedriver,它似乎可以正常工作

  3. 或者,我卸载了 chromedriver,然后使用 chromedriver-helper 重新安装它 gem 。还是一样的结果。

我已经为此苦恼了一段时间 - 任何帮助都将不胜感激。谢谢!

更新

我深入研究了 selenium-webdriver gem 的源代码,以了解它在尝试连接到 chromedriver 进程时到底在做什么。

我能够使用 selenium-webdriver gem 使用的相同命令在服务器上的 ruby​​ 控制台中复制以下内容:

#
# Start the Chromedriver Process
#

require 'childprocess'
process = ChildProcess.build(*["/usr/local/bin/chromedriver", "--port=9515"])
process.leader = true
process.alive? #=> false
process.start
process.alive? #=> true

#
# Create a Socket connection to 127.0.0.1:9515
#

require 'socket'
require 'selenium-webdriver'

host = Selenium::WebDriver::Platform.localhost #=> "127.0.1.1"
port = Integer(Selenium::WebDriver::Chrome::Service::DEFAULT_PORT) #=> 9515
timeout = 5

# Create and connect to socket

addr = Socket.getaddrinfo(host, port, Socket::AF_INET, Socket::SOCK_STREAM)
sock = Socket.new(Socket::AF_INET, Socket::SOCK_STREAM, 0)
sockaddr = Socket.pack_sockaddr_in(port, addr[0][3])

# First need to rescue the writable error and then connect again
# to get the actual error. No idea why but even the official
# rubydocs use this pattern: https://apidock.com/ruby/Socket/connect_nonblock

begin
sock.connect_nonblock(sockaddr)
rescue IO::WaitWritable
IO.select(nil, [sock], nil, 5)
sock.connect_nonblock(sockaddr)
end

#=> Errno::ECONNREFUSED (Connection refused - connect(2) for 127.0.1.1:9515)

所以看起来核心错误是套接字拒绝连接到那个(本地)地址和端口,即使 chromedriver 正在该端口上运行。

我对套接字知之甚少——这是一个常见错误吗?

谢谢!

最佳答案

我已经在系统 ruby 2.3.1p112 (2016-04-26) [x86_64-linux-gnu] 自带的 Ubuntu 16.04(更新版)和 ruby​​ 上试过了。

据我猜测,您使用的是错误的、旧的(在指南中有版本 2.26,它不适用于当前的 chrome)、chromedriver,它不兼容 使用当前稳定的 chrome

当前稳定的 chrome 是 Unpacking google-chrome-stable (71.0.3578.98-1) ... 所以你需要让 chromedriver 尽可能接近 chrome 版本。

要获取 chromedriver 版本的完整列表,请单击 here .

在我的例子中,这将是一个 71.0.3578.80 版本:

wget -N http://chromedriver.storage.googleapis.com/71.0.3578.80/chromedriver_linux64.zip

然后您可以按照说明继续操作。

然后你将开始工作selenium-webdriver:

irb
irb(main):001:0> require 'selenium-webdriver'
=> true
irb(main):003:0> options = Selenium::WebDriver::Chrome::Options.new
=> #<Selenium::WebDriver::Chrome::Options:0x00000002ee6db0 @args=#<Set: {}>, @binary=nil, @prefs={}, @extensions=[], @options={}, @emulation={}, @encoded_extensions=[]>
irb(main):004:0> options.add_argument('--headless')
=> #<Set: {"--headless"}>
irb(main):005:0> @driver = Selenium::WebDriver.for(:chrome, options: options)
=> #<Selenium::WebDriver::Chrome::Driver:0x..f95c429ee62a3a152 browser=:chrome>

注意:如果您在安装 ffi 时遇到问题,请通过 apt-get 安装 libffi-dev

关于ruby - `selenium-webdriver` ruby​​ gem 无法与 Ubuntu 14.04 上的 chromedriver 连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54247679/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com