Installed
WebAii
Automation Framework Version 2.0 of July 13, 2010. created a simple test. ActiveBrowser.ContainsText("ArtOfTest") does not work for FF, though it works for IE. Not sure what went wrong.
public void SampleWebAiiTest()
{
// Launch a browser instance
//Manager.LaunchNewBrowser(BrowserType.InternetExplorer);
Manager.LaunchNewBrowser(BrowserType.FireFox);
// The active browser
ActiveBrowser.NavigateTo("http://www.google.com");
// Find the google search box and set it to "ArtOfTest";
Find.ByName<HtmlInputText>("q").Text = "ArtOfTest";
// Click the Search button
Find.ByName<HtmlInputSubmit>("btnG").Click();
// Validate the search contain the 'ArtOfTest' text
bool art = ActiveBrowser.ContainsText("ArtOfTest");
Assert.IsTrue(art);
}