如何在 C# 中安排 Selenium Web 驱动程序测试



在我的开发项目中,我们使用 c# 使用 selenium webdriver 实现了回归测试用例。我想每天安排一次回归测试。使用的工具如下所示。

  1. C# 上的 Selenium Webdriver
  2. Visual Studio 2017
  3. NUnit 测试框架

请提出任何其他解决方案。

提前谢谢。

使用任务计划程序;

  1. 使用命令创建一个批处理文件以执行测试(例如..单位.exe ..\硒测试.cs(
  2. 打开"任务计划程序">
  3. 创建一个任务,将时间/频率作为"触发器",并将批处理文件设置为要执行的"操作"。
I found an exact solution for my scenario.
Tools is used:
1. NUnit3 Console. Location: https://github.com/nunit/nunit-console/releases
2. Windows Task Scheduler
 Download NUnit.Console-*.msi file.
 Install exe file. 
Create an nunit command to run your tests:
> nunit3-console testsfile.dll
More details here: https://github.com/nunit/docs/wiki/Console-Command-Line
Next, create the scheduled task
List item
 1. Open Task Scheduler
 2. Under Actions, Click Create a Basic Task
 3. Provide a descriptive name
 4. Choose the starting date and time.
 5. Choose Start a Program as the type of action
 6. In Program/Script add nunit3-console
 7. In Arguments add testsfile.dll
 7. In Start in add nunit3 console location
 8. Click Finish.
Now it will run on the schedule you provided.

最新更新