Project Description
- W3C API client for HTML markup validation which is perfect for web UI automation, accessibility and cross browser testing
- Can test external URL (check sample)
- Can test HTML source (check sample)
- Based on public API http://validator.w3.org/docs/api.html
- Does not require local server installation
- DLL can be integrated in test application
- Source code in C# can be tuned for special tasks to consume locally installed W3C server
Sample usage
var result = Validator.Client.Check(new Uri("http://www.bing.com", UriKind.Absolute));
if(!result.Validity)
{
.... Show errors.... result.Errors
}