Editor’s Note: The following post has been provided by Evinced, an https://www.insightpartners.com/-controlled company. Accessibility advocates have been demanding more accessible websites and mobile apps for years.

And why are companies checking for accessibility at the end of a development cycle — or worse, months after a release?

//Test with legacy accessibility scans @Test public void trvlHomePageLegacy() { driver.get(demoPage); scanForAccessibility(); // Click "Accommodation Type" dropdown driver.findElement(By.cssSelector("div.filter-container > div:nth-child(1)")).click(); scanForAccessibility(); // Click "City" dropdown driver.findElement(By.cssSelector("div.filter-container > div:nth-child(2)")).click(); scanForAccessibility(); // Click "When" date picker driver.findElement(By.cssSelector(".react-date-picker")).click(); scanForAccessibility(); }

Related Articles