python selenium生成測試報告的方法

2021-09-01 09:20:11 字數 1645 閱讀 5659

下面來介紹兩種生成友好的測試報告的方法

(1)使用htmltestrunner

使用的**示例如下:

# -*- coding:utf-8 -*-

import unittest

import baidu,youdao #這裡需要匯入測試檔案

import htmltestrunner

import time, sys

testunit = unittest.testsuite()

#將測試用例加入到測試容器(套件)中

#取前面時間

now = time.strftime("%y-%m-%m-%h_%m_%s",time.localtime(time.time()))

filename = r"e:\testprogram\unittest\program02\result.html".format(now)

print(filename)

fp = file(filename, 'wb')

#執行測試用例

(2)使用beautifulreport

1、使用的是python3.7版本,beautifulreport不支援2.7版本的。

示例**如下:

# -*- coding:utf-8 -*-

import unittest

from beautifulreport import beautifulreport

import time, sys

if __name__ == '__main__':

suite_tests = unittest.defaulttestloader.discover(".", pattern="test*.py", top_level_dir=none)

#取前面時間

執行之後結果如下圖:非常完美

Python Selenium環境搭建

安裝python 設定 python 的環境變數 安裝目錄 安裝目錄 scripts 使用 pip安裝 selenium pip install selenium 安裝完python pip工具,在安裝目錄的 scripts 目錄下。在 dos下直接執行 pip install selenium 即...

Python Selenium 學習筆記

1 判斷元素是否存在 try driver.find element.xx a true except a false if a true print 元素存在 elif a false print 元素不存在 2 判斷元素是否顯示 driver.find element by id outputb...

Python Selenium錯誤小結

因為要使用web應用,所以開始用起了,selenium包,安裝倒是挺容易的,但就是出了很多bug。filenotfounderror winerror 2 系統找不到指定的檔案。通過錯誤反饋發現是要把該軟體加到路徑裡面,但是,設定了系統環境變數後發現還是不行,最後,使用了乙個非常原始的方法 brow...