如何让 Nunit 针对不同的服务器运行 selenium 测试?
我有一个 Nunit 测试,它使用 selenium RC 对我们的 UI 运行测试。我想针对 2 个不同的服务器运行测试,这意味着使用 2 个不同的服务器调用 selenium.open() 。但是,我不想有 2 个不同的 Nunit 测试套件执行相同的操作但针对不同的服务器。我需要一种将参数从 Nant 或 Nunit 驱动程序传递到特定要测试的服务器的方法。
有办法做到这一点吗?
I have an Nunit test which uses selenium RC to run tests against our UI. I want to run the tests against 2 different servers, which means having the call to selenium.open() with 2 different servers. However, I don't want to have 2 different Nunit test suites that do the same thing but against different servers. I need a way of passing parameters from Nant or the Nunit driver program to specific which server to test against.
Is there anyway to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您希望对两台服务器运行相同的测试,最新版本的 NUnit 支持采用参数的测试。您可以在测试中包含一个服务器参数,如下所示:
当 NUnit 执行时,此测试将运行两次:一次使用“server1.address”参数,一次使用“server2.address”参数。您可以在此处阅读 ValueSource 测试: http://www .nunit.org/index.php?p=valueSource&r=2.5.5
If you're looking to run the same tests against both servers, the latest version of NUnit supports tests which take parameters. You could include a server argument to your tests like this:
When NUnit executes, this test will be run twice: once with the "server1.address" parameter and once with the "server2.address" parameter. You can read up on ValueSource tests here: http://www.nunit.org/index.php?p=valueSource&r=2.5.5