數(shù)據(jù)文件
公司主營業(yè)務(wù):成都網(wǎng)站制作、成都做網(wǎng)站、外貿(mào)營銷網(wǎng)站建設(shè)、移動網(wǎng)站開發(fā)等業(yè)務(wù)。幫助企業(yè)客戶真正實現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競爭能力。創(chuàng)新互聯(lián)建站是一支青春激揚、勤奮敬業(yè)、活力青春激揚、勤奮敬業(yè)、活力澎湃、和諧高效的團隊。公司秉承以“開放、自由、嚴謹、自律”為核心的企業(yè)文化,感謝他們對我們的高要求,感謝他們從不同領(lǐng)域給我們帶來的挑戰(zhàn),讓我們激情的團隊有機會用頭腦與智慧不斷的給客戶帶來驚喜。創(chuàng)新互聯(lián)建站推出邵東免費做網(wǎng)站回饋大家。
分別為要訪問的網(wǎng)址,輸入框的定位表達式,搜索按鈕的定位表達式,搜索關(guān)鍵字,斷言關(guān)鍵字
https://www.bing.com||//input[@id="sb_form_q"]||sb_form_go||"測試開發(fā)"||"測試開發(fā)"
https://www.sogou.com||//input[@id="query"]||stb||"測試開發(fā)"||"測試開發(fā)"
測試腳本:
方式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:封裝函數(shù)
#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("文件不存在!")
#定義實際的測試步驟:打開瀏覽器 輸入 關(guān)鍵字 進行搜索
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
#主函數(shù),獲取測試數(shù)據(jù),執(zhí)行測試步驟
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")