private long doAPI(Mode mode) throws Exception {
long start = System.currentTimeMillis();
open("/auradocs#reference?topic=api:Aura");
//TODO: this should test more.
AuraUITestingUtil util = new AuraUITestingUtil(getDriver());
WebElement content = util.findDomElement(By.cssSelector(".content"));
assertNotNull("Should have content showing", content);
assertTrue("Should have content displayed", content.isDisplayed());
return System.currentTimeMillis() - start;
}