Tagged Questions
2
votes
1answer
239 views
Cucumber and Watin for Acceptance testing in Asp.Net MVC
If the business owner/QA are writing/running the Acceptance test against the front end of a Asp.Net Mvc Application, is there a benefit to using SpecFlow/Watin or SpecFlow/Selenium over ...
5
votes
1answer
93 views
Is there a good way to structure my test code so I don't have to duplicate tests for different browsers using WatiN
In my WatiN tests I am currently structuring the test like this:
[TestMethod]
public void Failed_Attempted_Login_Invalid_Combination()
{
using (var browser = new IE(baseUrl + "login.aspx"))
{
...