throws InterruptedException {
WebElement largeTableViewButton = driver.findElement(By.name("TableView 10000"));
try {
largeTableViewButton.click();
ElementTree tree = IOSDriverAugmenter.augment(driver);
JSONObject json = tree.logElementTree(null, false);
assertNotNull( json, "We can get the page source for a large tableview");
} catch (Exception e) {
fail("Exception caught while performing logElementTree on page with large TreeView. App crashed");
}