如何让 Nunit 针对不同的服务器运行 selenium 测试?

发布于 2024-09-02 17:27:07 字数 209 浏览 1 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

若相惜即相离 2024-09-09 17:27:07

如果您希望对两台服务器运行相同的测试,最新版本的 NUnit 支持采用参数的测试。您可以在测试中包含一个服务器参数,如下所示:

[TestFixture]
public class MyTestFixture
{
    public string[] Servers = new string[] { "server1.address", "server2.address" };

    [Test]
    public void SomeTest([ValueSource("Servers")] server)
    {
        ISelenium selenium = new DefaultSelenium(server, 4444, "*firefox", "http://localhost");
        //rest of test
    }
}

当 NUnit 执行时,此测试将运行两次:一次使用“server1.address”参数,一次使用“server2.address”参数。您可以在此处阅读 ValueSource 测试: http://www .nu​​nit.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:

[TestFixture]
public class MyTestFixture
{
    public string[] Servers = new string[] { "server1.address", "server2.address" };

    [Test]
    public void SomeTest([ValueSource("Servers")] server)
    {
        ISelenium selenium = new DefaultSelenium(server, 4444, "*firefox", "http://localhost");
        //rest of test
    }
}

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文