Skip to content
julian edited this page Apr 20, 2017 · 3 revisions
  1. Download the Nuget package:

    Install-Package Globant.Selenium.Axe

  2. Import the library to the project:

using Globant.Selenium.Axe;
  1. 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!

Clone this wiki locally