使用chrome浏览器驱动自动打开浏览器

查看自己google浏览器的版本

image

下载与之对应的google浏览器驱动

image

将驱动配置放到和python.exe的同级目录下,如果不知道python在哪里可以打开cmd

where python
image

开始自动化调用

import time

from selenium import webdriver

# 创建Chrome浏览器驱动
driver = webdriver.Chrome()

# 打开网页
url = 'https://www.zhihu.com/search?type=content&q=sport'
driver.get(url)

# 获取网页源代码
html = driver.page_source
title = driver.title
print(title)
# 阻塞3秒
time.sleep(30)
# 关闭浏览器驱动
driver.quit()

# 输出网页源代码
print(html)
posted @ 2024-08-02 11:34  darling331  阅读(10)  评论(0编辑  收藏  举报