标签: csv selenium testing automation testng
有没有办法生成可以存储所有selenium脚本的测试用例结果的CSV文件。测试用例通过或测试用例失败。我正在使用TestNG执行Selenium测试用例。
答案 0 :(得分:0)
如果您正在使用TestNG,那么通过查看输出文件夹,它可以直接看到测试用例的数量通过或失败:
\workspace\proj_name\test-output\index.html
它为测试用例提供了所有详细描述。
如果您想将结果写入文件,那么您可以参考以下链接:
http://seleniummaster.com/sitecontent/index.php/selenium-web-driver-menu/selenium-test-automation-with-java/167-write-selenium-webdriver-testng-result-to-excel-file
希望它会对你有所帮助。