当前位置:   article > 正文

基于Python轻度使用Chrome Headless(谷歌浏览器无头模式)_chrome headless python disable-gpu

chrome headless python disable-gpu

简单demo如下

# coding: utf-8
from selenium import webdriver


chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument('--headless')
chrome_options.add_argument('--disable-gpu')
client = webdriver.Chrome(chrome_options=chrome_options)
# 如果没有把chromedriver加入到PATH中,就需要指明路径 executable_path='/home/chromedriver'

client.get("https://www.aliyun.com/jiaocheng/124644.html")
content = client.page_source
print(content)
client.quit()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

如果content打印出正确内容,说明程序运行成功

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/90270
推荐阅读
相关标签
  

闽ICP备14008679号