指定yum源
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
下载并安装
curl https://intoli.com/install-google-chrome.sh | bash
ldd /opt/google/chrome/chrome | grep “not found”
测试浏览器
google-chrome-stable --no-sandbox --headless --disable-gpu --screenshot https://www.baidu.com/
安装并执行成功后会在执行的当前路径下出现一个screenshot.png文件
下载地址(1):https://chromedriver.storage.googleapis.com/index.html
查看版本号(注意下载对应版本的驱动)
google-chrome --version
下载安装包
wget https://npm.taobao.org/mirrors/chromedriver/(对应版本)/chromedriver_linux64.zip
解压安装包
unzip unzip chromedriver_linux64.zip
将可执行文件移动到bin目录
mv chromedriver /usr/bin/
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
chrome_options = Options()
chrome_options.add_argument('--headless') # 设置无界面
chrome_options.add_argument('--no-sandbox') # root用户下运行代码需添加这一行
driver = webdriver.Chrome(chrome_options=chrome_options)
driver.get("https://www.baidu.com")
print(driver.page_source)
driver.quit()