Q: Does it also work for testing AJAX-enabled .Net web applications?
A: Yes, this framework supports testing web sites that use Ajax, that is one of the primary reasons why this framework was created. If you look through the API there are a lot of "Wait" methods that are useful when automating XmlHttp requests. For example: HtmlPage.WaitForAsyncPostComplete, HtmlPage.WaitForScript, HtmlElement.WaitForAttributeValue, HtmlElement.WaitForInnerText, HtmlElement.WaitUntilNotFound.
- Federico