selenium 无头浏览器
Posted zjj999
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium 无头浏览器相关的知识,希望对你有一定的参考价值。
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
# 创建一个参数对象,来控制 chrome 浏览器无界面打开
chrome_options = Options()
chrome_options.add_argument(‘--disable-gpu‘)
chrome_options.add_argument(‘--headless‘)
a = webdriver.Chrome(executable_path=r‘D:python学习其他chromedriver.exe‘, chrome_options=chrome_options)
a.get(‘http://www.baidu.com‘) # 访问百度
a.save_screenshot(‘baidu.png‘) # 截图测试效果
print(a.page_source)
a.quit()
以上是关于selenium 无头浏览器的主要内容,如果未能解决你的问题,请参考以下文章
如何让无头浏览器模仿成熟的浏览器来使用 selenium 运行 Web 应用程序?