基本環(huán)境:centos7,python3.x
創(chuàng)新互聯(lián)專注于企業(yè)成都全網(wǎng)營銷、網(wǎng)站重做改版、建平網(wǎng)站定制設計、自適應品牌網(wǎng)站建設、H5頁面制作、商城網(wǎng)站建設、集團公司官網(wǎng)建設、外貿(mào)網(wǎng)站制作、高端網(wǎng)站制作、響應式網(wǎng)頁設計等建站業(yè)務,價格優(yōu)惠性價比高,為建平等各大城市提供網(wǎng)站開發(fā)制作服務。
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版本對應)
由于下載的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是否可用,請執(zhí)行以下python腳本,如返回html內(nèi)容,則說明安裝成功
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()