0


linux下使用selenium

1、需要linux安装chrome浏览器,安装命令

yum localinstall google-chrome-stable_current_x86_64.rpm

2、得的谷歌浏览器版本号,根据版本号选择最接近的内核版本,linux命令

google-chrome --version

3、从linux内核库中,选择最接近的内核下载,驱动下载地址
http://chromedriver.storage.googleapis.com/index.html?path=114.0.5735.90/
4、上传zip压缩包,执行解压

unzip chromedriver_linux64.zip 

5、为解压后的驱动,附上执行权限

chmod a+x chromedriver

6、将解压后的路径,放到对应的代码中,并将代码设置为无头模式,且禁用沙箱

// 创建 ChromeOptions 对象ChromeOptions chromeOptions =newChromeOptions();//启动时 最大化浏览器
        chromeOptions.addArguments("--start-maximized");//启用无头模式
        chromeOptions.addArguments("--headless");// 禁用沙箱
        chromeOptions.addArguments("--no-sandbox");
        chromeOptions.addArguments("--disable-dev-shm-usage");
标签: linux selenium python

本文转载自: https://blog.csdn.net/weixin_41532254/article/details/132020944
版权归原作者 李嘉图008 所有, 如有侵权,请联系我们删除。

“linux下使用selenium”的评论:

还没有评论