WebAii (http://www.artoftest.com/) is a free, though not open source test framework for testing web applications. Like Watir/Watin/Watij, it works by driving the browser, either IE or Firefox. Like Watin, it allows writing your tests in C#. It can be run under NUnit, Visual Studio Team Test, or your own application.

  1. Set things up similarly to that described in VisualStudioCheatSheet.

  2. Add the ArtOfTest WebAii .dlls to the project references.

  3. Extend BaseNUnitTest for your test fixture. This gives you some convenience methods.

    1. Call Initialize() at the start of your test or in the SetUp method. This is part of BaseNUnitTest and does all the work of initializing the Manager.

    2. Call Manager.LaunchNewBrowser() to prepare a browser that your test will use to execute your tests.

      • Oops! This isn't working for me. It launches the browser, but never "connects." I'm not yet sure if this is connecting the test runner to the browser instance, or something else. Instead, it waits for 60 seconds (the default timeout) before reporting the error.

    3. ... More stuff goes here, once the above problem is resolved.

    4. Call this.CleanUp() at the end of your test or in the TearDown method. This is part of BaseNUnitTest and releases all of the resources allocated during Initialize().

ToBeWritten ...


CategoryCheatSheet