Differences between revisions 6 and 7
Deletions are marked like this. Additions are marked like this.
Line 12: Line 12:
   I've posted a [http://artoftest.com/CommunitySite/forums/p/59/670.aspx#670 query] on the !ArtOfTest User Forums.

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.

In this description, I'm using Windows XP Pro, Microsoft Visual C# 2008 version 9.0.20706.1 Beta2 Express Edition, NUnit version 2.4.4, WebAii version 1.0 RC2.

  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. I've posted a [http://artoftest.com/CommunitySite/forums/p/59/670.aspx#670 query] on the ArtOfTest User Forums.

    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().

At this point, my test class is

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

using ArtOfTest.WebAii.Core;
using ArtOfTest.WebAii.ObjectModel;
using ArtOfTest.WebAii.TestTemplates;
using ArtOfTest.WebAii.TestAttributes;
using ArtOfTest.WebAii.Controls.HtmlControls;

using NUnit.Framework;


namespace WebAiiDemo
{
    [TestFixture]
    public class GoogleTests : BaseNUnitTest
    {
        [Test]
        public void TestNavigateToPage()
        {
            Initialize();
            GetSettings().ClientReadyTimeout = 5000;

            // Launch an instance of the browser
            Manager.LaunchNewBrowser();

            // Navigate to google.com
            //ActiveBrowser.NavigateTo("http://www.google.com");

            // verify the title is actually google.
            //Assert.AreEqual("Google", ActiveBrowser.Find.ByTagIndex("title", 0).InnerText);
            this.CleanUp();
        }
    }
}

ToBeWritten ...


CategoryCheatSheet

iDIAcomputing: WebAiiCheatSheet (last edited 2009-07-27 18:25:46 by localhost)