我正在使用Selenium驱动程序使用WebinatorSpecFlow + NUnit开发ASP.NET MVC 3应用程序。我在使用Chrome(使用chromedriver)和Internet Explorer运行并行测试时遇到问题。
每当我通过Webinator在Selenium中通过同一个会话同时运行两个测试时,当我向页面发送任何点击动作时,IE似乎都会挂起。
我无法使用此处建议的解决方案,因为SpecFlow会自动生成底层的C#代码。我的解决方案的设计像这样(完整的代码可以作为一个要点):
_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更改测试方法吗?
参考文献:
您可以在更简单的只是使用
然后使用标记@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
目前,这是我发现的最佳解决方案,因为它还可以在所有浏览器中进行测试,而无需在所有特定浏览器中进行测试