C# 通过IIS托管的Dotnet测试结果html输出文件

C# 通过IIS托管的Dotnet测试结果html输出文件,c#,selenium-webdriver,.net-core,ui-automation,dotnet-test,C#,Selenium Webdriver,.net Core,Ui Automation,Dotnet Test,我目前正在进行C#selenium自动化测试。我的设置很简单:在测试服务器上运行测试(可通过远程桌面访问),我已设置task scheduler trigger以通过以下命令每天运行它们: dotnet测试--logger:“html;LogFileName=C:\inetpub\wwwroot\mywebsite\TestResults\TestResults.html”C:\AutomationSuite\Testsuite.dll 测试结果输出文件存储在wwwroot愚弄器中,并上载到可通

我目前正在进行C#selenium自动化测试。我的设置很简单:在测试服务器上运行测试(可通过远程桌面访问),我已设置task scheduler trigger以通过以下命令每天运行它们:
dotnet测试--logger:“html;LogFileName=C:\inetpub\wwwroot\mywebsite\TestResults\TestResults.html”C:\AutomationSuite\Testsuite.dll

测试结果输出文件存储在wwwroot愚弄器中,并上载到可通过vpn访问的网站。 可见输出:

现在,我的问题是:为了让我的测试结果更吸引人,是否有任何扩展或转换?类似于饼图之类的(在azure devops上运行测试运行的输出更吸引人)

是可能的还是我挖得太深了?
非常感谢

使用AllureReport成功设置了它