|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ExpectedCondition | |
|---|---|
| org.openqa.selenium.support.ui | |
| Uses of ExpectedCondition in org.openqa.selenium.support.ui |
|---|
| Methods in org.openqa.selenium.support.ui that return ExpectedCondition | |
|---|---|
static ExpectedCondition<WebElement> |
ExpectedConditions.elementToBeClickable(By locator)
An Expectation for checking an element is visible and enabled such that you can click it. |
static ExpectedCondition<WebDriver> |
ExpectedConditions.frameToBeAvailableAndSwitchToIt(java.lang.String frameLocator)
An expectation for checking whether the given frame is available to switch to. |
static ExpectedCondition<java.lang.Boolean> |
ExpectedConditions.invisibilityOfElementLocated(By locator)
An Expectation for checking that an element is either invisible or not present on the DOM. |
static ExpectedCondition<java.util.List<WebElement>> |
ExpectedConditions.presenceOfAllElementsLocatedBy(By locator)
An expectation for checking that there is at least one element present on a web page. |
static ExpectedCondition<WebElement> |
ExpectedConditions.presenceOfElementLocated(By locator)
An expectation for checking that an element is present on the DOM of a page. |
static ExpectedCondition<java.lang.Boolean> |
ExpectedConditions.stalenessOf(WebElement element)
Wait until an element is no longer attached to the DOM. |
static ExpectedCondition<java.lang.Boolean> |
ExpectedConditions.textToBePresentInElement(By locator,
java.lang.String text)
An expectation for checking if the given text is present in the specified element. |
static ExpectedCondition<java.lang.Boolean> |
ExpectedConditions.textToBePresentInElementValue(By locator,
java.lang.String text)
An expectation for checking if the given text is present in the specified elements value attribute. |
static ExpectedCondition<java.lang.Boolean> |
ExpectedConditions.titleContains(java.lang.String title)
An expectation for checking that the title contains a case-sensitive substring |
static ExpectedCondition<java.lang.Boolean> |
ExpectedConditions.titleIs(java.lang.String title)
An expectation for checking the title of a page. |
static ExpectedCondition<WebElement> |
ExpectedConditions.visibilityOf(WebElement element)
An expectation for checking that an element, known to be present on the DOM of a page, is visible. |
static ExpectedCondition<WebElement> |
ExpectedConditions.visibilityOfElementLocated(By locator)
An expectation for checking that an element is present on the DOM of a page and visible. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||