溫馨提示×

溫馨提示×

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

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

數(shù)據(jù)驅(qū)動示例 從txt文件獲取數(shù)據(jù)

發(fā)布時間:2020-06-24 19:59:38 來源:網(wǎng)絡(luò) 閱讀:290 作者:qq5a16e6241946e 欄目:編程語言
#encoding=utf-8
from selenium import webdriver
import time
import traceback
#獲取測試數(shù)據(jù)
with open("data.txt") as file_obj:
    datas = file_obj.readlines()

result = []
#遍歷測試數(shù)據(jù)
for data in datas:

    try:
        driver = webdriver.Chrome(executable_path = "e:\\chromedriver")
        url = "https://www.baidu.com"

        driver.get(url)

        driver.find_element_by_id("kw").send_keys(data.strip().split("||")[0].decode("gbk"))

        driver.find_element_by_id("su").click()

        time.sleep(3)

        assert data.strip().split("||")[1].decode("gbk")  in driver.page_source

    except Exception as e:
        traceback.print_exc()
        #因?yàn)榻Y(jié)果是ANSI格式保存的,所以編碼為gbk,不至于亂碼
        result.append(data.strip().split("||")[0] +u"失敗\n".encode("gbk"))
    else:
        result.append(data.strip().split("||")[0]+u"成功\n".encode("gbk"))

    time.sleep(2)

#測試結(jié)果寫入文件,result列表的內(nèi)容需要時字符串   
with open("result.txt","a") as file_obj:
    file_obj.writelines(result)

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

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

AI