-
Notifications
You must be signed in to change notification settings - Fork 11
Home
julian edited this page Apr 20, 2017
·
3 revisions
-
Download the Nuget package:
Install-Package Globant.Selenium.Axe
-
Import the library to the project:
using Globant.Selenium.Axe;
- Create a new Webdriver instance and call the Analize service:
[TestMethod]
public void TestAnalyzeTargetWithExtensions()
{
IWebDriver driver = new FirefoxDriver();
driver.Navigate().GoToUrl(targetTestUrl);
var results = driver.Analyze();
results.Should().NotBeNull(nameof(results));
}
Enjoy!