使用chrome瀏覽器驅動自動開啟瀏覽器

darling331發表於2024-08-02

檢視自己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)

相關文章