| Package | Description |
|---|---|
| org.fluentlenium.core.conditions |
| Modifier and Type | Method and Description |
|---|---|
boolean |
FluentConditions.attribute(java.lang.String name,
java.lang.String value)
Check that the attribute has the given value.
|
boolean |
FluentConditions.className(java.lang.String className)
Check that the class attribute has the given class name.
|
boolean |
FluentConditions.clickable()
Check that this element is visible and enabled such that you can click it.
|
boolean |
StringConditions.contains(java.lang.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(java.lang.String suffix)
Check that this ends with the given string.
|
boolean |
AbstractIntegerConditions.equalTo(int value)
Check that this is equal to given value
|
boolean |
StringConditions.equalTo(java.lang.String anotherString)
Check that this is equal to with the given string.
|
boolean |
StringConditions.equalToIgnoreCase(java.lang.String anotherString)
Check that this is equal to with the given string, ignoring case.
|
boolean |
AbstractIntegerConditions.greaterThan(int value)
Check that this is greater than given value
|
boolean |
AbstractIntegerConditions.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(java.lang.String id)
Check that this element has the given id.
|
boolean |
AbstractIntegerConditions.lessThan(int value)
Check that this is less than given value
|
boolean |
AbstractIntegerConditions.lessThanOrEqualTo(int value)
Check that this is less than or equal given value
|
boolean |
StringConditions.matches(java.util.regex.Pattern pattern)
Check that this matches the given regular expression pattern.
|
boolean |
StringConditions.matches(java.lang.String regex)
Check that this matches the given regular expression string.
|
boolean |
FluentConditions.name(java.lang.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 |
FluentConditions.present()
Check that this element is present
|
boolean |
FluentListConditions.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(java.lang.String prefix)
Check that this starts with the given string.
|
boolean |
FluentConditions.tagName(java.lang.String tagName)
Check that this element has the given tagName
|
boolean |
FluentConditions.text(java.lang.String text)
Check that this element has the given text.
|
boolean |
FluentConditions.textContent(java.lang.String anotherString)
Check conditions on this element text content.
|
boolean |
FluentConditions.value(java.lang.String value)
Check that this element has the given value
|
boolean |
FluentListConditions.verify(java.util.function.Predicate<FluentWebElement> predicate,
boolean defaultValue)
Check that the given predicate is verified.
|
boolean |
Conditions.verify(java.util.function.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 © 2018 FluentLenium. All Rights Reserved.