运行使用 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%
如何向批处理文件添加指令以生成自动化测试用例结果的日志文件?
在最后一行末尾添加
logger:trx
将在与 Bat 文件相同的目录中创建结果日志
%test_runner% %test_dlls% /tests:%tests% /logger:trx