赞
踩
参考 unning-selenium-with-headless-chrome
参考 Installing ChromeDriver on Ubuntu
- from selenium.webdriver.chrome.options import Options
- chrome_options = Options()
- chrome_options.add_argument('window-size=1920x3000') #指定浏览器分辨率
- chrome_options.add_argument('--disable-gpu') #谷歌文档提到需要加上这个属性来规避bug
- chrome_options.add_argument('--hide-scrollbars') #隐藏滚动条, 应对一些特殊页面
- chrome_options.add_argument('blink-settings=imagesEnabled=false') #不加载图片, 提升速度
- chrome_options.add_argument('--headless') #浏览器不提供可视化页面. linux下如果系统不支持可视化不加这条会启动失败
- chrome_options.binary_location = r'/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary' #手动指定使用的浏览器位置
需要在打开浏览器后, 获取浏览器的command_executor url
, 以及session_id
opener.command_executor._url, opener.session_id #opener为webdriver对象
之后通过remote
方式链接
- from selenium import webdriver
- opener = webdriver.Remote(command_executor=_url,desired_capabilities={}) #_url为上面的_url
- opener.close() #这时会打开一个全新的浏览器对象, 先把新的关掉
- opener.session_id = session_id #session_id为上面的session_id
之后对opener
的任何操作都会反映在之前的浏览器上.
--headless
这样的浏览器参数- from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
- capabilities = DesiredCapabilities.CHROME
- capabilities.setdefault('chromeOptions', {'args':['--headless', '--disable-gpu']})
chromedriver not in PATH
初始化的时候, 传入chromedriver绝对路径
opener = webdriver.Chrome(r'/usr/local/bin/chromedriver', chrome_options=chrome_options)
opener.get_cookies()
opener.add_cookie(cookie) #需要先访问该网站产生cookies后再进行覆写
opener.implicitly_wait(30) #30是最长等待时间
偏向使用js函数来执行
opener.execute_script('''window.open("http://baidu.com","_blank");''')
有些时候页面在你点击后会异步进行请求, 完成一些操作, 这时可能就会生成输出数据的url, 只要抓到这个url就可以跳过token验证等安全监测, 直接获得数据.
- script = "var performance = window.performance || window.mozPerformance || window.msPerformance || window.webkitPerformance || {}; var network = performance.getEntries() || {}; return network;"
- performances = opener.execute_script(script)
script里是js代码, 一般用来进行性能检查, 网络请求状况, 使用selenium执行这段js就可以获得所有的请求信息.
转载于:点击打开链接
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。