在Linux下使用selenium+ Chrome + Chromedriver

1.安装selenium 

    pip3 install selenium 

                              

2.安装chrome

    用下面的命令安装Google Chrome

yum install https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm

                                                   

   也可以先下载至本地,然后安装

wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm

yum install ./google-chrome-stable_current_x86_64.rpm

   安装必要的库

yum install mesa-libOSMesa-devel gnu-free-sans-fonts wqy-zenhei-fonts

3、安装 chromedriver

如果为了谷歌浏览器版本,查看安装谷歌浏览器办版本号:命令 

google-chrome --version

查询结果如图:

                                       

查看相应版本的谷歌浏览器对应的驱动版本 http://chromedriver.storage.googleapis.com/index.html

可以直接在这里下载然后上传到linux环境下.

chrome官网 安装

wget https://chromedriver.storage.googleapis.com/78.0.3904.70/chromedriver_linux64.zip

淘宝源(推荐)

   wget http://npm.taobao.org/mirrors/chromedriver/78.0.3904.70/chromedriver_linux64.zip

将下载的文件解压,放在如下位置   

unzip chromedriver_linux64.zip

mv chromedriver /usr/bin/

给予执行权限

    cd /usr/bin

    chmod chromedriver+x /usr/bin/

4、运行代码,查看是否成功(python下)

 进入ipython环境或者直接python3

python3

from selenium import webdriver
from selenium.webdriver.chrome.options import Options
chrome_options = Options()
chrome_options.add_argument('--no-sandbox')
chrome_options.add_argument('--disable-dev-shm-usage')
chrome_options.add_argument('--headless')
browser = webdriver.Chrome(options=chrome_options)

'''
其他提高性能参数
'''
chrome_options.add_argument('blink-settings=imagesEnabled=false')
chrome_options.add_argument('--disable-gpu')

其中
“–no-sandbox”参数是让Chrome在root权限下跑
“–headless”参数是不用打开图形界面

注意一定要设置无界面,不然会报错

selenium.common.exceptions.WebDriverException: Message: unknown error: Chrome failed to start: exited abnormally
  (unknown error: DevToolsActivePort file doesn't exist)
  (The process started from chrome location /usr/bin/google-chrome is no longer running, so ChromeDriver is assuming that Chrome has crashed.)

5.如果报错:

(Driver info: chromedriver=2.41.578700 (2f1ed5f9343c13f73144538f15c00b370eda6706),platform=Linux 3.10.0-957.5.1.el7.x86_64 x86_64)

原因:

1.chromedriver没有安装

2.chromedriver的版本和chrom浏览器的版本不对应

因为我们已经安装过了,所以很明显是原因2,所以自己去找到和谷歌浏览器相应的chromedriver吧.

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值