Automated UI Test With WatiN and Specflow in .Net: Part 1

These days if we cover most of our code with tests we can guarantee our code works. If our tests are working well it says a very important thing, we are delivering a good build and the future changes will be costless! To accomplish this scenario I study some tools to improve my test cover and I will share them with you.

WatiN

Let's start with WatiN (pronounced as What-in), it provides a way to automate tests using IE or Firefox using .NET.

Creating a Simple Project

Now we will use WatiN as a simple example. Use the following procedure and have fun!

  • Create an empty Web MVC project
  • Create a new controller (I named it WatinController)

Add the 2 actions “Page1” and “Page2” (right-click the action and select “Add View”).

Add view

Debug

Create an index view.

Create index

Create Page1 view.

Create page

Create a Page2 view (like page1) but with the title page2.

Run your project and see if everything is right!

Index

Creating a test project

Here we will use WatiN to test our application.

Create a UnitTestProject

Create unit test project

Installing WatiN

First, we need to install WatiN in our project test.

  • In Nugget type “watin”, and install it as in the following:
    Watin
  • Go to references and find Interop.SHDocVw and change the property “Embed Interop Types” to false:
    Embed Interop

Testing

Now we use Watin to load our index page and check if the “title” is correct. We can do this like this.

[TestMethod]
public void TestIndex()
{
    // Opening IE browser at url http://localhost/WatinSpecflowSample/Watin (our index page link)
    IE browser = new IE("http://localhost/WatinSpecflowSample/Watin");
    // Getting title of page using the element ID
    string title = browser.ElementWithTag("h2", Find.ById("title"), null).Text;
    // Checking if page has the title "Index"
    Assert.AreEqual(title, "Index");
    // Closing the browser
    browser.Close();
}

If we run this test you will see the browser opening and closing. And check the result of the test is passed. \o/

Check result

Let's put some difficulty in our tests. Create a new Test Method named “TestClickPage1”, and try this.

[TestMethod]
public void TestClickPage1()
{
    // Opening IE browser at url http://localhost/WatinSpecflowSample/Watin (our index page link)
    IE browser = new IE("http://localhost/WatinSpecflowSample/Watin");
    // Get link page1 and click
    browser.Link("page1").Click();
    // Wait for page to open
    browser.WaitForComplete();
    // Getting title of page using the element ID
    string title = browser.ElementWithTag("h2", Find.ById("title"), null).Text;
    // Checking if page has the title "Page1"
    Assert.AreEqual(title, "Page1");
    // Closing the browser
    browser.Close();
}

Running it you will see the result.

Doing the same for the Page3 link, the test will fail and this shows how important it is to cover our application with tests. We can anticipate this error and fix it before generating a build. I know, writing tests seems boring, but if we do this at the beginning of the project then this eventually becomes normal. The purpose of this article is just to show how to use WatiN to test our UI web application.

In the next article, I will integrate Specflow and WatiN to create a more understandable test.


Recommended Free Ebook
Similar Articles