程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

[Software testing] python+selenium automated testing

編輯:Python

一、什麼是自動化測試

自動化測試指軟件測試的自動化,在預設狀態下運行應用程序或者系統,預設條件包括正常和異常,最
After evaluating the running results.將人為驅動的測試行為轉化為機器執行的過程.

  • 單元測試
    java的單元測試框架是Junit,在這裡不再贅述.
  • 接口自動化
    接口測試就是API測試,相對於UI自動化API自動化更加容易實現,執行起來也更穩定.

接口自動化的有以下特點:
(1)可在產品前期,接口完成後介入
(2)用例維護量小
(3)適合接口變動較小,界面變動頻繁的項目
常見的接口自動化測試工具有,RobotFramework,JMeter,SoapUI,TestNG+HttpClient,Postman等.

  • UI自動化
    雖然測試金字塔告訴我們盡量多做API層的自動化測試,但是UI層的自動化測試更加貼近用戶的需求和軟件系統的實際業務.

UI自動化的特點:
(1)用例維護量大
(2)頁面相關性強,必須後期項目頁面開發完成後介入
(3)UI測試適合與界面變動較小的項目

UI自動化測試的好處:
(1)用於回歸測試,Save manpower and later maintenance costs,減少重復測試的時間,實現快速回歸測試
(2)創建優良可靠的測試過程,減少人為錯誤
(3)可以運行更多更繁瑣的測試
(4)可以執行一些手工測試困難或不可能進行的測試
(5)更好的利用資源
(6)測試腳本的重用性

二、環境搭建

1. Selenium IDE

  • 介紹
    Selenium是web應用中基於UI的自動化測試框架,支持多平台、多浏覽器、多語言.
  • 安裝
    (1)Search in the Google Chrome extensionSelenium IDE,安裝即可
    2. Webdriver
  • 介紹
    It can be understood as the script driver of the browser,啟動浏覽器後,selenium-webdriver會將目標浏覽器綁定到特定的端口,啟動後的浏覽器則作為
    webdriver的remote server.客戶端(也就是測試腳本),借助ComandExecutor發送HTTP請求給sever端,執行測試腳本.
  • 安裝
    WebdriverThe installation needs to be downloaded in combination with the corresponding browser version,否則無法使用,Please check your browser version before downloading,Webdriver下載鏈接:點這裡,最後下載的Webdriver需要放在python安裝路徑的Scripts目錄下
    3. python
    pythonAs an integrated development environment for writing automated test scripts,pythonConfigure relevant actions by installation and its environment variables,請看這篇博客:(超詳細)python環境安裝

三、創建項目

1.新建一個新的項目

2.Write a simple automation script,打開百度頁面,搜索"胡歌"

腳本

# 導入驅動
from selenium import webdriver
import time
# 浏覽器設置
driver=webdriver.Chrome()
# 打開鏈接
driver.get("https://www.baidu.com")
# 通過"kw"找到百度輸入框,and enter Hu Ge
driver.find_element_by_id("kw").send_keys("胡歌")
# Find Baidu and click the button
driver.find_element_by_id("su").click()
# 停留3秒
time.sleep(3)
# 退出
driver.quit()

點擊執行

四、操控元素的基本方法

1.點擊元素
調用元素WebElement對象 的Click() 方法

# Find Baidu and click the button
driver.find_element_by_id("su").click()

2.輸入字符串
調用元素WebElement對象 的send_keys() 方法

# 通過"kw"找到百度輸入框,and enter Hu Ge
driver.find_element_by_id("kw").send_keys("胡歌")

3.獲取元素的文本內容
通過WebElement 對象的text屬性,可以獲取元素 展示在界面上的文本內容

# 獲取文本信息
text=driver.find_element_by_id("bottom_layer").text
print(text)

4.元素的獲取
Some knowledge of front-end pages is required,The positioning of the element can be performed by uniquely finding the element through the representation of each element on the front-end page.

  • 通過class name way to locate the Baidu input box
driver.find_element_by_class_name("s_ipt").send_keys("胡歌")
  • 通過css selectorway to locate the Baidu input box
driver.find_element_by_css_selector("#kw").send_keys("qk")
  • 通過name 方式定位 The element must then be unique in order to be located
driver.find_element_by_name("wd").send_keys("qk")
  • 通過link text定位 Must be a link tag
driver.find_element_by_link_text("hao123").click()
  • 通過xpath of each element in the pagexpath都是唯一的
driver.find_element_by_xpath("//*[@id='kw']").send_keys("qk")
  • 通過tag name
driver.find_elements_by_tag_name("input").clck()

添加等待

When executing a script to get page elements,There are two ways to wait(非常重要):

固定等待 :Wait for the end of the fixed time to perform the relevant operation
time.sleep(5)
智能等待 :Perform actions as soon as the page loads to the element
driver.implicitly_wait(5)
driver.find_element_by_id(“kw”).send_keys(“胡歌”)
driver.find_element_by_id(“su”).click()

五、Browser related operations

# 設置浏覽器的寬和高
driver.set_window_size(500,600)
time.sleep(3)
# The scroll bar of the browser is pulled to the lowest end
js="var q=document.documentElement.scrollTop=10000"
driver.execute_script(js)
time.sleep(2)
# The scroll bar of the browser is pulled to the top
js1="var q=document.documentElement.scrollTop=0"
driver.execute_script(js1)
time.sleep(2)
# 浏覽器的最大化
driver.maximize_window()
time.sleep(2)
# 浏覽器的前進
driver.forward()
time.sleep(3)
# 浏覽器的後退
driver.back()

六、組合鍵的使用

需要導入selenium.webdriver.common.keys import Keys

from selenium import webdriver
import time
from selenium.webdriver.common.keys import Keys
# 浏覽器設置
driver=webdriver.Chrome()
driver.get("http://www.baidu.com")
driver.find_element_by_id("kw").send_keys("元旦快樂")
driver.find_element_by_id("su").click()
time.sleep(3)
# ctrl+a 全選輸入框內容
driver.find_element_by_id("kw").send_keys(Keys.CONTROL,'a')
time.sleep(3)
# ctrl+x 剪切輸入框內容
driver.find_element_by_id("kw").send_keys(Keys.CONTROL,'x')
time.sleep(3)
# 輸入框重新輸入內容,搜索
driver.find_element_by_id("kw").send_keys("2022")
driver.find_element_by_id("su").click()
time.sleep(5)
driver.quit()

七、鍵盤事件

from selenium import webdriver
import time
from selenium.webdriver.common.keys import Keys
# 浏覽器設置
driver=webdriver.Chrome()
# 打開登錄界面
driver.get("http://127.0.0.1:88/zentao/user-login.html")
# 登陸事件
driver.find_element_by_id("account").send_keys("admin")
# 使用tabkey to locate the username
driver.find_element_by_id("account").send_keys(Keys.TAB)
time.sleep(2)
driver.find_element_by_name("password").send_keys("787426.kun")
# 使用enter鍵登錄
driver.find_element_by_id("submit").send_keys(Keys.ENTER)
time.sleep(3)
driver.quit()

八、鼠標事件

需要導入selenium.webdriver.common.action_chains import ActionChains

from selenium import webdriver
import time
from selenium.webdriver.common.action_chains import ActionChains
# 浏覽器設置
driver=webdriver.Chrome()
driver.get("http://www.baidu.com")
driver.find_element_by_id("kw").send_keys("元旦快樂")
# driver.find_element_by_id("su").click()
b=driver.find_element_by_id("su")
# 雙擊事件 等同於click
ActionChains(driver).double_click(b).perform()
# 右擊事件
# ActionChains(driver).context_click(b).perform()
time.sleep(3)
driver.quit()

九、勾選事件

Getting the file path requires an importos

  • Check the event page
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>勾選事件</title>
</head>
<body>
<div>
<input id="c1" type="checkbox">籃球<br>
<input id="c2" type="checkbox">音樂<br>
<input id="c3" type="checkbox">舞蹈<br>
<input id="r1" type="radio">男<br>
<input id="r2" type="radio">女
</div>
<div>
<select id="select">
<option value="b">北京</option>
<option value="s">上海</option>
<option value="h">杭州</option>
<option value="z">深圳</option>
</select>
</div>
</body>
</html>
  • 腳本
from selenium import webdriver
import time
import os
driver=webdriver.Chrome()
url= 'file:///' + os.path.abspath('F:\\桌面/勾選事件.html')
driver.get(url)
# 通過idGet label tick
# driver.find_element_by_id("c1").click()
# driver.find_element_by_id("c2").click()
# driver.find_element_by_id("c3").click()
# driver.find_element_by_id("r1").click()
# driver.find_element_by_id("r2").click()
# Gets a set of tags to traverse ticks
buttons= driver.find_elements_by_tag_name("input")
# 遍歷標簽
for button in buttons:
# Just tick the checkbox
if button.get_attribute("type")=="checkbox":
button.click()
# The positioning of the element of the drop-down box 
# 兩種方式
# 1.xpath
# driver.find_element_by_xpath("//*[@id='select']/option[3]").click()
# 2.First locate a group of elements,Filters based on special attributes of elements
options=driver.find_elements_by_tag_name("option")
for option in options:
if option.get_attribute("value")=="h":
option.click()
time.sleep(3)
driver.quit()

十、彈窗處理

# -*- coding: utf-8 -*-
from selenium import webdriver
from time import sleep
import os
dr = webdriver.Chrome()
file_path = 'file:///' + os.path.abspath('alert.html')
dr.get(file_path)
# 點擊鏈接彈出alert
dr.find_element_by_id('tooltip').click()
sleep(2)
alert = dr.switch_to.alert()
alert.accept()
sleep(2)
#接受警告信息
alert = dr.switch_to.alert()
alert.accept()
#得到文本信息打印
alert = dr.switch_to.alert()
print(alert.text)
#取消對話框(如果有的話)
alert = dr.switch_to.alert()
alert.dismiss()
#輸入值
alert = dr.switch_to.alert()
alert.send_keys("hello word")
dr.quit()

  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved