您好,登錄后才能下訂單哦!
數據文件
分別為要訪問的網址,輸入框的定位表達式,搜索按鈕的定位表達式,搜索關鍵字,斷言關鍵字
https://www.bing.com||//input[@id="sb_form_q"]||sb_form_go||"測試開發"||"測試開發"
https://www.sogou.com||//input[@id="query"]||stb||"測試開發"||"測試開發"
測試腳本:
方式1:腳本方式
#encoding=utf-8
from selenium import webdriver
import time
with open("e://data.txt",encoding="gbk") as fp:
datas = fp.readlines()
driver = webdriver.Firefox(executable_path = "d:\\geckodriver")
for data in datas:
data = data.strip().split("||")
driver.get(data[0])
searchBox = driver.find_element_by_xpath(data[1])
searchBox.send_keys(data[3])
searchButton = driver.find_element_by_id(data[2])
searchButton.click()
time.sleep(5)
assert data[4] in driver.page_source
driver.quit()
方式2:封裝函數
#encoding=utf-8
from selenium import webdriver
import time,os
driver = webdriver.Firefox(executable_path = "d:\\geckodriver")
def get_data(file_path):
if os.path.exists(file_path):
with open(file_path,encoding="gbk") as fp:
test_datas = fp.readlines()
return test_datas
else:
print("文件不存在!")
#定義實際的測試步驟:打開瀏覽器 輸入 關鍵字 進行搜索
def test_step(url,searchBox_xpath,searchButton_id,searchWord,assertWord):
global driver
driver.get(url)
searchBox = driver.find_element_by_xpath(searchBox_xpath)
searchButton = driver.find_element_by_id(searchButton_id)
searchBox.send_keys(searchWord)
searchButton.click()
time.sleep(5)
assert assertWord in driver.page_source
#主函數,獲取測試數據,執行測試步驟
def main(file_path):
global driver
test_datas = get_data(file_path)
for data in test_datas:
if data.strip() != "":
data = data.split("||")
url = data[0].strip()
print(url)
searchBox_xpath = data[1].strip()
searchButton_id = data[2].strip()
searchWord = data[3].strip()
assertWord = data[4].strip()
test_step(url,searchBox_xpath,searchButton_id,searchWord,assertWord)
driver.quit()
if __name__ == "__main__":
main("e:\\data.txt")
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。