Hi,
I’m trying to validate existence of some label by using wait.until.
The command is : wait.until(ExpectedConditions.visibilityOfElementLocated(By.name(UIStrings.CONFIRMATION_MESSAGE)));
and then I’m getting an exception of timeout , but if I’m trying to execute next command :
driver.findElement(By.name(UIStrings.CONFIRMATION_MESSAGE)).isEnabled()
I’m getting ‘true’ …
Any idea why ?