Python Selenium初次使用問題

2021-09-24 14:15:04 字數 1110 閱讀 8079

準備好環境

win:pip install selenium

mac:pip3 install selenium

firefox:

chrome:檔案裡說明了對應版本)

ie:問題1:selenium.common.exceptions.webdriverexception: message: 'geckodriver' executable needs to be in path. 

webdriver.firefox(executable_path='e:\python\geckodriver.exe')
問題2、使用firefox,瀏覽器啟動後就沒有了反應

原因:webdriver的版本與瀏覽器版本不匹配。

方法:更換其他版本的webdriver

問題3、使用chrome,瀏覽器啟動後 提示data;

原因:未知,通過網上查詢說是版本不對,但是更還版本後還是如此。但仍能正常使用

from selenium import webdriver

#啟動瀏覽器

#driver = webdriver.firefox(executable_path='e:\python\geckodriver.exe')

driver = webdriver.chrome()

#輸入**

driver.get('')

#定位輸入框輸入查詢內容「資訊」

driver.find_element_by_id("kw").send_keys("資訊")

driver.find_element_by_id("su").click()

#**等待

driver.implicitly_wait(30)

#關閉瀏覽器

driver.quit()

問題4:使用firefox,進入頁面定位後.sent_keys(""),報錯selenium.common.exceptions.invalidargumentexception: message: expected [object undefined] undefined to be a string

原因:版本問題,換chrome瀏覽器了

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...