如何编写指令将Selenium自动化测试结果的日志记录写入批处理文件

问题描述 投票:0回答:1

运行使用 C# NUnit 编写的 Selenium Automation 测试用例的批处理文件如下:

set test_runner="C:\Program Files\Microsoft Visual Studio\2022\Professional\Common7\IDE\Extensions\TestPlatform\vstest.console.exe"
set test_dlls="C:\Users\user1\source\repos\TestProject1\TestProject1\bin\Debug\net6.0\TestProject1.dll"
set tests="Test1_Login,Test2_Register,Test3_Logout"
set nunit-console nunit.tests.dll /out:TestResult.txt
%test_runner% %test_dlls% /tests:%tests%

如何向批处理文件添加指令以生成自动化测试用例结果的日志文件?

c# selenium-webdriver batch-file nunit
1个回答
0
投票

在最后一行末尾添加

logger:trx
将在与 Bat 文件相同的目录中创建结果日志

%test_runner% %test_dlls% /tests:%tests% /logger:trx
© www.soinside.com 2019 - 2024. All rights reserved.