| Package | Description |
|---|---|
| org.fluentlenium.core.conditions |
| Modifier and Type | Method and Description |
|---|---|
boolean |
FluentConditions.attribute(String name,
String value)
Check that the attribute has the given value.
|
boolean |
FluentConditions.clickable()
Check that this element is visible and enabled such that you can click it.
|
boolean |
StringConditions.contains(CharSequence charSequence)
Check that this contains the given sequence of characters.
|
boolean |
RectangleConditions.dimension(int width,
int height)
Check that rectangle has the given dimension.
|
boolean |
FluentConditions.displayed()
Check that this element is displayed.
|
boolean |
FluentConditions.enabled()
Check that this element is enabled.
|
boolean |
StringConditions.endsWith(String suffix)
Check that this ends with the given string.
|
boolean |
IntegerConditions.equalTo(int value)
Check that this is equal to given value
|
boolean |
StringConditions.equalTo(String anotherString)
Check that this is equal to with the given string.
|
boolean |
StringConditions.equalToIgnoreCase(String anotherString)
Check that this is equal to with the given string, ignoring case.
|
boolean |
IntegerConditions.greaterThan(int value)
Check that this is greater than given value
|
boolean |
IntegerConditions.greaterThanOrEqualTo(int value)
Check that this is greater than or equal given value
|
boolean |
RectangleConditions.height(int height)
Check that rectangle has the given height.
|
boolean |
FluentConditions.id(String id)
Check that this element has the given id.
|
boolean |
IntegerConditions.lessThan(int value)
Check that this is less than given value
|
boolean |
IntegerConditions.lessThanOrEqualTo(int value)
Check that this is less than or equal given value
|
boolean |
StringConditions.matches(Pattern pattern)
Check that this matches the given regular expression pattern.
|
boolean |
StringConditions.matches(String regex)
Check that this matches the given regular expression string.
|
boolean |
FluentConditions.name(String name)
Check that this element has the given name
|
boolean |
RectangleConditions.position(int x,
int y)
Check that rectangle has the given (x, y) position.
|
boolean |
RectangleConditions.positionAndDimension(int x,
int y,
int width,
int height)
Check that rectangle has the given psition and dimension.
|
boolean |
FluentListConditions.present()
Check that this element is present.
|
boolean |
FluentConditions.present()
Check that this element is present
|
boolean |
FluentConditions.selected()
Check that this element is selected.
|
boolean |
FluentListConditions.size(int size)
Check that this element list has the given size.
|
boolean |
FluentConditions.stale()
Check that this element is no longer attached to the DOM.
|
boolean |
StringConditions.startsWith(String prefix)
Check that this starts with the given string.
|
boolean |
FluentConditions.tagName(String tagName)
Check that this element has the given tagName
|
boolean |
FluentConditions.text(String text)
Check that this element has the given text.
|
boolean |
FluentConditions.textContent(String anotherString)
Check conditions on this element text content.
|
boolean |
FluentConditions.value(String value)
Check that this element has the given value
|
boolean |
FluentListConditions.verify(com.google.common.base.Predicate<FluentWebElement> predicate,
boolean defaultValue)
Check that the given predicate is verified.
|
boolean |
Conditions.verify(com.google.common.base.Predicate<T> predicate)
Check that the given predicate is verified against this condition object.
|
boolean |
RectangleConditions.width(int width)
Check that rectangle has the given width.
|
boolean |
RectangleConditions.x(int x)
Check that rectangle has the given x position.
|
boolean |
RectangleConditions.y(int y)
Check that rectangle has the given y position.
|
Copyright © 2016 FluentLenium. All Rights Reserved.