欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

基于Python轻度使用Chrome Headless(谷歌浏览器无头模式)

程序员文章站 2024-03-09 17:57:41
...

简单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()

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