python selenium 者常見錯誤

2021-09-24 14:41:52 字數 1394 閱讀 2466

call function result missing 'value
cannot get automation extension

traceback (most recent call last): file "e:/python_selenium/pycharmprojects/data/run.py", line 22, in print(driver.title)

file "e:\python_selenium\python35\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 222, in title

resp = self.execute(command.get_title)

file "e:\python_selenium\python35\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 201, in execute

self.error_handler.check_response(response)

file "e:\python_selenium\python35\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 181, in check_response

raise exception_class(message, screen, stacktrace)

selenium.common.exceptions.webdriverexception: message: no such session

invalid element state: element must be user-editable in order to clear it.首先需要確保這個元素能輸入內容,如果可以send_keys(),卻不能clear(),那麼試試先對元素click(),讓焦點在元素上再clear()

原因是 這個工程沒有配置python直譯器,具體設定方法如下:

1.開啟file下的settings

後面還會一直跟新,最近在看別的資料~,也希望大家能一起補充自己遇到的問題

selenium的常見異常

Python Selenium環境搭建

安裝python 設定 python 的環境變數 安裝目錄 安裝目錄 scripts 使用 pip安裝 selenium pip install selenium 安裝完python pip工具,在安裝目錄的 scripts 目錄下。在 dos下直接執行 pip install selenium 即...

Python Selenium 學習筆記

1 判斷元素是否存在 try driver.find element.xx a true except a false if a true print 元素存在 elif a false print 元素不存在 2 判斷元素是否顯示 driver.find element by id outputb...

Python Selenium錯誤小結

因為要使用web應用,所以開始用起了,selenium包,安裝倒是挺容易的,但就是出了很多bug。filenotfounderror winerror 2 系統找不到指定的檔案。通過錯誤反饋發現是要把該軟體加到路徑裡面,但是,設定了系統環境變數後發現還是不行,最後,使用了乙個非常原始的方法 brow...