@pavel_kazlou, well concerning your question on FluentWait: basically there are two types of wait:
Explicit wait
WebDriverWait.until(condition-that-finds-the-element)
Implicit wait
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
Difference is
- Obvious - Implicit wait time is applied to all elements in your
script but Explicit only for particular element
- In Explicit you can configure, how frequently (instead of 500
millisecond) you want to check condition.
- In Explicit you can also configure to ignore other exceptions than
"NoSuchElement" till timeout..
Use a FluentWait which works similarly to WebDriverWait (which in fact extends FluentWait) but gives you a little more flexibility.
here is WebDriverWait usage example(Use a different WebDriverWait constructor to specify the element polling interval (measured in milliseconds).):
new WebDriverWait(webDriver(), 10, 50).until(ExpectedConditions.elementToBeClickable(By.xpath(menuItemXpath)));
Using a FluentWait which works similarly to WebDriverWait (which in fact extends FluentWait) but gives you a little more flexibility:in particular the ability to choose the WebDriver exception to ignore.
usage example:
new FluentWait(webDriver())
.withTimeout(timeout, TimeUnit.SECONDS)
.pollingEvery(50, TimeUnit.MILLISECONDS)
.ignoring(NoSuchElementException.class)
.until(ExpectedConditions.elementToBeClickable(By.xpath(menuItemXpath)));
To conclude my note: fluentWait is an Explicit type of wait and provides you possibility to choose explicitly what type of WebDriver exception to ignore, where as any implicit wait includes fixed amount of time to wait for any webElement. IMHO fluentWait approach is more robust from this point of view.
driver.findElements(By.cssSelector("[id=a] [id=b]"))but that's not an or. I haven't found a css or selector. – VolkerK Oct 23 '12 at 8:18