溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Selenium+Python自動化測試怎么實(shí)現(xiàn)

發(fā)布時(shí)間:2022-08-09 16:18:15 來源:億速云 閱讀:148 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要介紹“Selenium+Python自動化測試怎么實(shí)現(xiàn)”的相關(guān)知識,小編通過實(shí)際案例向大家展示操作過程,操作方法簡單快捷,實(shí)用性強(qiáng),希望這篇“Selenium+Python自動化測試怎么實(shí)現(xiàn)”文章能幫助大家解決問題。

Selenium介紹

  Selenium 是支持web瀏覽器自動化的一系列工具和庫的綜合項(xiàng)目,Selenium 的核心是 WebDriver,這是一個(gè)編寫指令集的接口,可以在許多瀏覽器中互換運(yùn)行。

環(huán)境搭建

Python安裝

mac系統(tǒng)自帶的Python版本是2.7(版本低),直接通過命令brew install python3安裝即可

Selenium+Python自動化測試怎么實(shí)現(xiàn)

通過which python3查看安裝位置

Selenium+Python自動化測試怎么實(shí)現(xiàn)

在終端運(yùn)行python3,看到下面的畫面,就說明Python安裝成功!

Selenium+Python自動化測試怎么實(shí)現(xiàn)

安裝Pycharm

  • 在Pycharm官網(wǎng)下載

  • 編輯器創(chuàng)建文件夾(例如selecode)

  • Pycharm打開selecode文件夾,進(jìn)行如下設(shè)置

Selenium+Python自動化測試怎么實(shí)現(xiàn)

selenium安裝

pip安裝

1.1 下載pip

curl https://bootstrap.pypa.io/pip/get-pip.py -o get-pip.py

1.2 安裝

Selenium+Python自動化測試怎么實(shí)現(xiàn)

通過pip安裝selenium

pip install selenium

查看selenium

pip show selenium

Selenium+Python自動化測試怎么實(shí)現(xiàn)

WebDriver安裝

查看瀏覽器版本,WebDriver版本需要和瀏覽器版本保持一致

Selenium+Python自動化測試怎么實(shí)現(xiàn)

下載和瀏覽器對應(yīng)版本的WebDriver

Selenium+Python自動化測試怎么實(shí)現(xiàn)

添加環(huán)境變量

vim ~/.profile
export PATH="$PATH:/usr/local/chromedriver"
source ~/.profile

3.1 mac還需要添加信任,在webdriver目錄下,執(zhí)行

Selenium+Python自動化測試怎么實(shí)現(xiàn)

chromedriver % xattr -d com.apple.quarantine chromedriver

3.2 在控制臺測試下是否生效

Selenium+Python自動化測試怎么實(shí)現(xiàn)

selemium的基本使用

創(chuàng)建python文件

Selenium+Python自動化測試怎么實(shí)現(xiàn)

郵件運(yùn)行下方demo代碼,查看效果

Selenium+Python自動化測試怎么實(shí)現(xiàn)

元素定位

ID定位

Selenium+Python自動化測試怎么實(shí)現(xiàn)

xpath定位(直接Copy full Xpath)

Selenium+Python自動化測試怎么實(shí)現(xiàn)

Selenium+Python自動化測試怎么實(shí)現(xiàn)

多窗口

在selenium中,通過一個(gè)隨機(jī)生成的字符串(uuid)來唯一標(biāo)識某個(gè)窗口

執(zhí)行js:window.open打開新窗口

new = 'window.open("https://service.homepartners.tech/sso/Account/Login?ReturnUrl=%2Fsso%2Fconnect%2Fauthorize' \
  '%2Fcallback%3Fclient_id%3Dhpa-ctm-vendor-portal%26redirect_uri%3Dhttps%253A%252F%252Fvendor.homepartners.tech' \
  '%252Fcallback%26response_type%3Dtoken%2520id_token%26scope%3Dopenid%2520profile%2520vendor-api%2520foundation' \
  '-api%26state%3D5a6d7d6d84264b828f02081ac9fb1c3a%26nonce%3D7cb02e1da5214cd0828d4373b29e5b66"); '
  
driver.execute_script(new)

handler的獲取
3.1 獲取所有:driver.window_handlers
3.2 獲取單個(gè):driver.current_window_handle
3.3 切換:driver.switch_to_window(handle)

Selenium+Python自動化測試怎么實(shí)現(xiàn)

關(guān)于“Selenium+Python自動化測試怎么實(shí)現(xiàn)”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識,可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會為大家更新不同的知識點(diǎn)。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI