el.click();
- wait.until(ExpectedConditions.textToBePresentInElementLocated(By.id("user-messages"),"User " + userName + " created." ));
- assertElementPresent( "users-grid-user-id-" + userName );
-
if ( valid )
{
+ wait.until(ExpectedConditions.textToBePresentInElementLocated(By.id("user-messages"),"User " + userName + " created." ));
+ wait.until(ExpectedConditions.visibilityOfElementLocated( By.id("users-grid-user-id-" + userName) ));
+
//String[] columnValues = { userName, fullName, emailAd };
//assertElementPresent( XPathExpressionUtil.getTableRow( columnValues ) );
} catch (Exception e) {
logger.info("Error: {}, {}, {}",count,e.getClass().getName(), e.getMessage());
if (el!=null) {
- Point elLoc = el.getLocation();
- logger.info("Location: x={} y={}", elLoc.getX(), elLoc.getY());
+ // Elements may be stale and throw an exception, if the location is requested
+ try
+ {
+ Point elLoc = el.getLocation();
+ logger.info( "Location: x={} y={}", elLoc.getX(), elLoc.getY() );
+ } catch (Throwable e2) {
+ logger.info("Could not determine location");
+ }
}
ex = e;
count--;