1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| https:
from selenium.webdriver.chrome.options import Options
chrome_options.add_argument('--user-agent=""') # 设置请求头的User-Agent chrome_options.add_argument('--no-sandbox') # 取消沙盒模式 以最高权限运行 chrome_options.add_argument('--window-size=1280x1024') # 设置浏览器分辨率(窗口大小) chrome_options.add_argument('--start-maximized') # 最大化运行(全屏窗口),不设置,取元素会报错 chrome_options.add_argument('--disable-infobars') # 禁用浏览器正在被自动化程序控制的提示 chrome_options.add_argument('--incognito') # 隐身模式(无痕模式) chrome_options.add_argument('--hide-scrollbars') # 隐藏滚动条, 应对一些特殊页面 chrome_options.add_argument('--disable-javascript') # 禁用javascript chrome_options.add_argument('--blink-settings=imagesEnabled=false') # 不加载图片, 提升速度 chrome_options.add_argument('--headless') # 浏览器不提供可视化页面
chrome_options.add_argument('--ignore-certificate-errors') # 禁用扩展插件并实现窗口最大化 chrome_options.add_argument('--disable-gpu') # 禁用GPU加速 . 谷歌文档提到需要加上这个属性来规避bug chrome_options.add_argument('–disable-software-rasterizer') chrome_options.add_argument('--disable-extensions') chrome_options.add_argument('--start-maximized') chrome_options.add_argument('--disable-dev-shm-usage') chrome_options.add_argument('ignore-certificate-errors') #至关重要 chrome_options.add_argument('--proxy-server={0}'.format(proxy.proxy)) #添加代理 (proxy:browsermob-proxy 创建的)
|