Python: 網路爬蟲 selenium 開啟chrome瀏覽器自動連線; chrome = webdriver.Chrome (service=service, options=options) ; 以下錯誤如何解決? SessionNotCreatedException: session not created: This version of ChromeDriver only supports Chrome version 113 Current browser version is 118.0.5993.118 with binary path C:\Program Files\Google\Chrome\Application\chrome.exe

加入好友
加入社群
Python: 網路爬蟲 selenium 開啟chrome瀏覽器自動連線; chrome = webdriver.Chrome (service=service, options=options) ; 以下錯誤如何解決? SessionNotCreatedException: session not created: This version of ChromeDriver only supports Chrome version 113 Current browser version is 118.0.5993.118 with binary path C:Program FilesGoogleChromeApplicationchrome.exe - 儲蓄保險王

安裝套件(Anaconda環境):

conda install -c conda-forge selenium

conda install -c conda-forge webdriver-manager

下載適當的webdriver

如: chromedriver_win32.zip

解壓縮後:

Python: 網路爬蟲 selenium 開啟chrome瀏覽器自動連線; chrome = webdriver.Chrome (service=service, options=options) ; 以下錯誤如何解決? SessionNotCreatedException: session not created: This version of ChromeDriver only supports Chrome version 113 Current browser version is 118.0.5993.118 with binary path C:Program FilesGoogleChromeApplicationchrome.exe - 儲蓄保險王

 

from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.chrome.service import Service

“””匯入Selenium庫所需的模組,

其中包括 webdriver、Options和Service。”””

 

options = Options()
options.add_argument("--disable-notifications")

“””創建一個Options對象,

使用add_argument方法設置Chrome瀏覽器的選項。

在這個例子中,

使用–disable-notifications選項禁用瀏覽器通知。”””

 

driverpath = r"P:\Python\selenium\chromedriver_win32\chromedriver.exe"

#定義Chrome WebDriver的路徑

service = Service(driverpath)
chrome = webdriver.Chrome(service=service, options=options)

“””創建一個Service對象,

並傳遞driverpath路徑以告訴Selenium要使用的驅動程序的位置。

然後,用service變量初始化webdriver.Chrome。”””

 

chrome.get("https://www.facebook.com")

#使用get方法將瀏覽器導航到Facebook的網站。

Python: 網路爬蟲 selenium 開啟chrome瀏覽器自動連線; chrome = webdriver.Chrome (service=service, options=options) ; 以下錯誤如何解決? SessionNotCreatedException: session not created: This version of ChromeDriver only supports Chrome version 113 Current browser version is 118.0.5993.118 with binary path C:Program FilesGoogleChromeApplicationchrome.exe - 儲蓄保險王

執行結果:

自動打開chrome瀏覽器

連線facebook:

Python: 網路爬蟲 selenium 開啟chrome瀏覽器自動連線; chrome = webdriver.Chrome (service=service, options=options) ; 以下錯誤如何解決? SessionNotCreatedException: session not created: This version of ChromeDriver only supports Chrome version 113 Current browser version is 118.0.5993.118 with binary path C:Program FilesGoogleChromeApplicationchrome.exe - 儲蓄保險王

推薦hahow線上學習python: https://igrape.net/30afN

如果出現以下錯誤的話:
SessionNotCreatedException: session not created: This version of ChromeDriver only supports Chrome version 113
Current browser version is 118.0.5993.118 with binary path C:\Program Files\Google\Chrome\Application\chrome.exe

可以將Chrome(118)降級為

同ChromeDriver(113)

或者參考新文章的做法

加入好友
加入社群
Python: 網路爬蟲 selenium 開啟chrome瀏覽器自動連線; chrome = webdriver.Chrome (service=service, options=options) ; 以下錯誤如何解決? SessionNotCreatedException: session not created: This version of ChromeDriver only supports Chrome version 113 Current browser version is 118.0.5993.118 with binary path C:Program FilesGoogleChromeApplicationchrome.exe - 儲蓄保險王

儲蓄保險王

儲蓄險是板主最喜愛的儲蓄工具,最喜愛的投資理財工具則是ETF,最喜愛的省錢工具則是信用卡

You may also like...

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *