gpt4 book ai didi

python - 如何在我的代码中使用 python 生成 html 测试报告

转载 作者:行者123 更新时间:2023-11-28 20:58:05 34 4
gpt4 key购买 nike

from selenium import selenium
import unittest, time, re
import HTMLTestRunner

class Untitled(unittest.TestCase):
def setUp(self):
self.verificationErrors = []
self.selenium = selenium("localhost",4444,"*iexplore","http://google.com.ua/")
self.selenium.start()

def test_untitled(self):
sel = self.selenium
sel.open("/")
sel.type("q", "home")
sel.click("btnG")
sel.click("link=Welcome to Home.com")
sel.wait_for_page_to_load("30000")
self.failUnless(sel.is_text_present("Results * for selenium rc"))

def tearDown(self):
time.sleep(25)
self.selenium.stop()
self.assertEqual([], self.verificationErrors)

if __name__ == "__main__":
unittest.main()

最佳答案

当我遇到类似的问题时,我不得不覆盖 TestResultTestCase.defaultTestResult() 以将数据收集到我方便的多个列表中。然后您可以使用任何模板库(Jinja、Mako 等)将其转换为 HTML。

关于python - 如何在我的代码中使用 python 生成 html 测试报告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4799687/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com