编程语言
首页 > 编程语言> > c#-使用Webinator Selenium,SpecFlow和NUnit进行多个浏览器测试

c#-使用Webinator Selenium,SpecFlow和NUnit进行多个浏览器测试

作者:互联网

我正在使用Selenium驱动程序使用WebinatorSpecFlow NUnit开发ASP.NET MVC 3应用程序.我在使用Chrome(使用chromedriver)和Internet Explorer运行并行测试时遇到问题.

每当我在Web Session中通过Selenium通过Webinator在同一个会话中同时运行两个测试时,当我向该页面发送任何点击动作时,IE似乎都会挂起.

我无法使用建议的解决方案here,因为SpecFlow会自动生成底层的C#代码.我的解决方案的设计类似于this(完整代码可作为要点):

_multipleBrowsers.RunTest(web => web.GoToUrl("http://localhost/PROJECT/Authentication/Registration"));

发生的是,我为需要测试的每个浏览器实例化了一个新的IWebManager.然后,我使用浏览器实例调用委托动作.它是这样的:

        foreach (var web in _webManagers)
        {
            Debug.WriteLine("Running test with " + web.Config.Browser);

            action(web);
        }

这样,测试几乎可以并行运行.它弹出一个浏览器,执行操作,然后另一个浏览器,依此类推.

关于如何解决此ChromeDriver问题有任何想法吗?我应该使用SpecFlow更改针对多个浏览器的测试方法吗?

参考文献:

> Webinator
> specflow
> nunit
> ChromeDriver

解决方法:

您可以更简单地just use

然后使用标记@Browser:IE编写功能

@Browser:IE
@Browser:Firefox
Scenario: Add comments
       Given I navigated to /guinea-pig
       And I have entered 'This is not a comment' into the commentbox
       When I press 'submit' 
       Then my comment 'This is not a comment' is displayed on the screen

目前,这是我发现的最佳解决方案,因为它还可以在所有浏览器中进行测试,而无需在所有特定浏览器中进行测试

标签:selenium,nunit,selenium-chromedriver,specflow,c
来源: https://codeday.me/bug/20191201/2077994.html