Lightweight Test Automation Framework
Anything and everything to do with the Lightweight Test Automation Framework. http://snurl.com/70y8y
The April release of the Lightweight Test Automation Framework for ASP.NET has just been posted and you can download it here. For this release, the team has worked hard to include the following bug fixes and new features. Please continue to give us your feedback as many of the fixes and features are based what we have heard from the community.
Improvements to the user interface
A new look has been given to the test name when it passes or fails. There is both color and visual queues that indicate weather a test has...
In some instances it might be best if your tests did not run in the same application as the website being tested. This is where the “IApplicationPathFinder” interface comes into play. If you implement this interface you will see that it only has one method “GetApplicationpath.” What this does is allow you to specify a prefix of sorts for the navigate method. When you call navigate on a HTMLPage it uses a ApplicationPathFinder to get the location it should look for the website at. For example, the framework will implement this interface and simply return the request path by default. ...