python谷歌浏览器驱动安装失败_阿里云centos7.2下安装chrome浏览器+webdriver+selenium及常见设置-傻瓜教程...
Linux版本:阿里云CentOS Linux release 7.2.1511 (Core)
root用戶下
測(cè)試時(shí)間:2019-04-16
1.安裝chrome瀏覽器
1.1 創(chuàng)建yum源文件
cd /etc/yum.repos.d/
touch google-chrome.repo
1.2 輸入yum源信息
[google-chrome]
name=google-chrome
baseurl=http://dl.google.com/linux/chrome/rpm/stable/$basearch
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
1.3 安裝google chrome
yum -y install google-chrome-stable --nogpgcheck
2.安裝chromedriver及selenium
yum install chromedriver#此處應(yīng)該注意chromedriver版本是否與chrome版本是否一致,如果不一致,請(qǐng)手動(dòng)下載chromedriver驅(qū)動(dòng)并替換
pip install selenium
默認(rèn)安裝路徑:chromedriver: /usr/bin/chromedriver
3.修改配置來(lái)執(zhí)行代碼,及常見(jiàn)錯(cuò)誤處理
3.1測(cè)試demo
#!/usr/bin/env python
# -*- coding=UTF-8 -*-
#測(cè)試代碼
import time
from selenium import webdriver
def test():
chromeOptions = webdriver.ChromeOptions()
chromeOptions.add_argument('--headless') #瀏覽器無(wú)窗口加載
chromeOptions.add_argument('--disable-gpu') #不開(kāi)啟GPU加速
"""
解決報(bào)錯(cuò):
selenium.common.exceptions.WebDriverException: Message: unknown error: Chrome failed to start: exited abnormally
(unknown error: DevToolsActivePort file doesn't exist)
"""
chromeOptions.add_argument('--disable-dev-shm-usage')
chromeOptions.add_argument('--no-sandbox')#以根用戶打身份運(yùn)行Chrome,使用-no-sandbox標(biāo)記重新運(yùn)行Chrome,禁止沙箱啟動(dòng)
#其它設(shè)置(可選):
#chromeOptions.add_argument('--hide-scrollbars') #隱藏滾動(dòng)條, 應(yīng)對(duì)一些特殊頁(yè)面
#chromeOptions.add_argument('blink-settings=imagesEnabled=false') #不加載圖片, 提升速度
#chromeOptions.add_argument("user-agent=Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36") #偽裝其它版本瀏覽器,有時(shí)可以解決代碼在不同環(huán)境上的兼容問(wèn)題,或者爬蟲(chóng)cookie有效性保持一致需要設(shè)置此參數(shù)
#創(chuàng)建driver對(duì)象
#chrome_options=chromeOptions加載設(shè)置
#executable_path="/usr/bin/chromedriver"指定webdriver路徑(可選)
driver = webdriver.Chrome(chrome_options=chromeOptions,executable_path="/usr/bin/chromedriver")
try:
driver.get("http://www.baidu.com")
time.sleep(3)
print(driver.page_source)
except Exception as e:
print(e)
finally:
driver.quit()
if __name__ == '__main__':
test()
4.參考資料
總結(jié)
以上是生活随笔為你收集整理的python谷歌浏览器驱动安装失败_阿里云centos7.2下安装chrome浏览器+webdriver+selenium及常见设置-傻瓜教程...的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 为什么刹车热了会失灵_汽车为什么要换刹车
- 下一篇: php获取页面a标签内容_AKCMS常用