What fresh hell is THIS now? - Patrick Lauke
Hi, nowdays… can cut out role="region"
when <section>
tag is used. Or is it bettter to keep both?
<section role="region" aria-labelledby="section-title"> <h2 id="section-title">Headline</h2> ... </section>
vs
<section aria-labelledby="section-title"> <h2 id="section-title">Headline</h2> ... </section>
//Tab on an element public void tabOnElement(By element) { webElement = driver.findElement(element); webElement.sendKeys(Keys.TAB); webElement.sendKeys(Keys.ENTER); }