DeprecationWarning:executable_path is Obsolete in Selenium Python
在Selenium Python 中,executable_path 參數已被標記為已棄用下會提示警告訊息嘗試實例化一個webdriver 實例。若要解決此問題,請改用 Service 物件。
此棄用與 Selenium 4.0 Beta 1 的版本一致,其中規定除 Options 和 Service 之外的所有參數都將被棄用。
解決方案
要修復此錯誤並確保與Selenium v4 的兼容性,請按照以下步驟操作步驟:
確保Selenium 升級到v4.0.0:
安裝適用於 Python 的 Webdriver Manager:
使用以下更新的程式碼區塊(假設Chrome):
如果您希望傳遞選項參數:
如果您希望傳遞選項參數:以上是如何修復'executable_path”的 Selenium Python DeprecationWarning?的詳細內容。更多資訊請關注PHP中文網其他相關文章!