中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

web自動化爬蟲selenium centos 無GUI環境配置

發布時間:2020-06-29 19:06:02 來源:網絡 閱讀:649 作者:juggles 欄目:編程語言

基本環境:centos7,python3.x

1.安裝selenium

pip3 install selenium


2.安裝chrome-browser

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

yum install ./google-chrome-stable_current_x86_64.rpm


3.下載chromedriver(注意要和chrome-browser版本對應)

web自動化爬蟲selenium centos 無GUI環境配置

由于下載的chrome-browser是70版本的,所以chromedriver 選擇了2.43版本

wget http://chromedriver.storage.googleapis.com/2.43/chromedriver_linux64.zip

解壓此文件,并將文件移動到/usr/bin目錄下

unzip chromedriver_linx64.zip

mv chromedriver /usr/bin/


4.測試selenium是否可用,請執行以下python腳本,如返回html內容,則說明安裝成功

from selenium import webdriver
url='http://bing.com'
option = webdriver.ChromeOptions()
option.add_argument('--no-sandbox')
option.add_argument('--headless')
driver = webdriver.Chrome(chrome_options=option)
driver.get(url)
print(driver.page_source)

注意需要加上,禁止在沙箱中運行

option.add_argument('--no-sandbox')
option.add_argument('--headless')


補充:

安裝firefox支持

yum install firefox

yum install Xvfb

yum install libXfont

pip3 install pyvirtualdisplay

測試腳本

#!/usr/bin/python3
from selenium import webdriver
from pyvirtualdisplay import Display
display = Display(visible=0, size=(800,600))
display.start()
driver = webdriver.Firefox()
driver.get('https://www.baidu.com')
print(driver.title)
driver.quit()
display.stop()


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

白玉县| 东乡| 治县。| 星座| 胶州市| 兴山县| 古交市| 静海县| 千阳县| 平原县| 平乡县| 新乡县| 黄龙县| 宣城市| 神木县| 安溪县| 饶平县| 周至县| 台南县| 丹东市| 华宁县| 琼中| 肃宁县| 稷山县| 洮南市| 通江县| 江安县| 天柱县| 南丰县| 讷河市| 枣强县| 错那县| 吴旗县| 绥滨县| 鄯善县| 孟州市| 乌兰浩特市| 汶川县| 卓资县| 台前县| 莎车县|