ubuntu服务器无法运行chromedriver解决方法(转)

Posted When you look into the abyss,

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu服务器无法运行chromedriver解决方法(转)相关的知识,希望对你有一定的参考价值。

sudo apt-get install Xvfb
sudo pip install pyvirtualdisplay

from pyvirtualdisplay import Display
display = Display(visible=0, size=(1024, 768))
display.start()
driver = webdriver.Chrome(/usr/local/bin/chromedriver)
driver.get(http://mail.sina.net);
print(driver.title)
display.stop()

作者:虞大胆
链接:https://www.jianshu.com/p/3f7c40dbc317
來源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

 

以上是关于ubuntu服务器无法运行chromedriver解决方法(转)的主要内容,如果未能解决你的问题,请参考以下文章

WebDriverException:消息:服务 chromedriver 意外退出。状态码是:127 with ChromeDriver and Selenium in Ubuntu

解决npm install时报错无法安装chromedriver的问题

在 Python 中使用 chromedriver_autoinstaller 运行 selenium 时出现问题

使用 chromedriver 跳过 phpunit 的所有测试

将 chromedriver 与 selenium/python/ubuntu 一起使用

如何在 Ubuntu 上更新 Chromedriver?