安装

apt update
apt install -y chromium chromium-driver
pip install selenium

使用

from selenium import webdriver
from selenium.webdriver.chrome.options import Options

opts = Options()
opts.add_argument('--no-sandbox')
driver = webdriver.Chrome(options=opts)
driver.get('http://www.baidu.com')
最后修改:2021 年 11 月 14 日 04 : 39 PM
如果觉得我的文章对你有用,无需赞赏用心感谢!