码迷,mamicode.com
首页 > 其他好文 > 详细

selenium 无头浏览器

时间:2020-04-01 14:37:03      阅读:289      评论:0      收藏:0      [点我收藏+]

标签:chrome   www   pytho   http   option   访问   sele   访问百度   print   

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 无头浏览器

标签:chrome   www   pytho   http   option   访问   sele   访问百度   print   

原文地址:https://www.cnblogs.com/zjj999/p/12612278.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!