设置无界面(浏览器)运行代码
from selenium import webdriver
from selenium.webdriver import ChromeOptions
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.chrome.options import Options
# 设置options参数,以开发者模式运行
option = ChromeOptions()
option.add_experimental_option("excludeSwitches", ["enable-automation"])
# 解决报错,设置无界面运行
option.add_argument('--no-sandbox')
option.add_argument('--disable-dev-shm-usage')
option.add_argument('window-size=1920x3000') # 指定浏览器分辨率
option.add_argument('--disable-gpu') # 谷歌文档提到需要加上这个属性来规避bug
option.add_argument('--hide-scrollbars') # 隐藏滚动条, 应对一些特殊页面
option.add_argument('blink-settings=imagesEnabled=false') # 不加载图片, 提升速度
option.add_argument('--headless') # 浏览器不提供可视化页面. linux下如果系统不支持可视化不加这条会启动失败
option.binary_location = r"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" # 手动指定使用的浏览器位置
# 创建一个driver对象,模拟开启浏览器
self.driver = webdriver.Chrome(options=option)
# 登陆请求页面
self.driver.get(url)