python selenium自動化基礎

2022-08-18 12:15:11 字數 1436 閱讀 2908

一、python與selenium環境搭建

二、使用selenium的webdirver模組對瀏覽器進行操作

注意:需要安裝瀏覽器版本對應的driver驅動

from selenium import webdriver  #

匯入webdriver

driver = webdriver.chrome() #

例項化chrome瀏覽器

driver.get("

") #

開啟print(driver.title) #

列印title

print(driver.current_url) #

列印 url

#根據id獲取元素

ele = driver.find_element_by_id("kw"

)ele.clear()

#清除元素文字

ele.send_keys("

lily

") #

寫入lily

二、webdriver模組對瀏覽器進行操作:元素的定位

b.find_element_by_link_text(arg) #根據標籤文字獲取元素

b.find_element_by_partial_link_text(arg) #根據標籤文字模糊查詢獲取元素

b.find_element_by_css_selector() #根據css路徑獲取元素

xpath定位元素:/ // . .. @id count() loval-name()

b.find_element_by_xpath('/html/body/form/input') #form元素下的所有input

b.find_element_by_xpath('/html/body/form/input[1]') #根據下標定位某乙個input

二、滑鼠和鍵盤模擬使用者行為

①匯入 actionchains:from selenium.webdriver.common.action_chains import actionchains

②用於生成模擬使用者行為:actionchains(driver)

③執行儲存行為:perform()

ele=driver.find_element_by_link_text(arg)

actionchains(driver).move_to_element(ele).perform()

二、多視窗切換

d.window_handles #所有開啟的視窗

d.switch_to_window(d.window_handles[

1]) #根據下標定位視窗

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