带有 selenium gird 的 chromedriver - 没有这样的文件或目录

chromedriver with selenium gird - No such file or directory

我在设置的网格上 运行 宁 chrome 个实例遇到问题

我收到以下错误:

ERROR [21] org.openqa.selenium.os.UnixProcess - org.apache.commons.exec.ExecuteException:
Execution failed (Exit value: -559038737. Caused by java.io.IOException: Cannot run program
"/tmp/webdriver/chromedriver/chromedriver_2.13_32bit" (in directory "."): error=2, No such
file or directory)

我向你保证 /tmp/webdriver/chromedriver/chromedriver_2.13_32bit 也存在它的可执行文件 (chmod +x)

参数 I 运行 节点具有:

java -jar selenium-server-standalone-2.44.0.jar -port 5555 -role node -hub http://10.20.102.176:4444/grid/register -nodeConfig /opt/selenium/node_5555.json -Dwebdriver.chrome.driver=/tmp/webdriver/chromedriver/chromedriver_2.13_32bit

甚至 symlink 如果未提供驱动程序的路径,selenium 的默认位置

/usr/local/bin/chromedriver
/usr/bin/chromedriver

但是当我尝试 运行 某些东西时我仍然遇到同样的错误。


额外信息 - 可能会有帮助:

我也尝试过 运行ning chrome 来自 python 的实例在那台机器上

from selenium.webdriver import Chrome

a = Chrome('/tmp/webdriver/chromedriver/chromedriver_2.13_32bit')

我得到的回溯是:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: __init__() got an unexpected keyword argument 'path'
>>> a = Chrome('/tmp/webdriver/chromedriver/chromedriver_2.13_32bit')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python2.7/dist-packages/selenium/webdriver/chrome/webdriver.py", line 59, in __init__
    self.service.start()
  File "/usr/local/lib/python2.7/dist-packages/selenium/webdriver/chrome/service.py", line 66, in start
    "ChromeDriver executable needs to be available in the path. "
selenium.common.exceptions.WebDriverException: Message: ChromeDriver executable needs to be available in the path. Please download from http://chromedriver.storage.googleapis.com/index.html and read up at http://code.google.com/p/selenium/wiki/ChromeDriver

我在 chromedriver-users Google 组寻求帮助,但那里没有任何回应。

我是不是漏掉了什么?

问题是,我试图在 64 位系统中 运行 32 位 bin 文件。

有两种解决方案:

我的服务器丢失了 ia32-lib - 事实证明,你不能 运行 在 64 位系统中只有 32 位
我所要做的就是:sudo apt-get install ia32-libs 添加对 32 位的支持

只需下载并使用 64 位 Chromedriver