1.安装chrome
yum install https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm
2.查看chrome版本
google-chrome
3.下载安装chromedriver
方式一
选择对应chrome版本或者相近的chromedriver版本下载到本地在上传到linux
http://npm.taobao.org/mirrors/chromedriver
方式二
wget http://npm.taobao.org/mirrors/chromedriver/104.0.5112.79/chromedriver_linux64.zip
3.解压
unzip chromedriver_linux64.zip
4.移动到/usr/bin目录下
mv chromedriver /usr/bin/
5.给执行权限
chmod +x /usr/bin/chromedriver
6.检查版本
chromedriver --version
7.linux下使用
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')
chrome_options.add_argument('--disable-gpu')
browser = webdriver.Chrome(options=chrome_options)
browser.get('https://www.baidu.com')
print(browser.page_source)
版权归原作者 xutengfei999 所有, 如有侵权,请联系我们删除。