Uses of Annotation Interface
io.fluentlenium.core.conditions.message.Message

Packages that use Message
Package
Description
 
  • Uses of Message in io.fluentlenium.core.conditions

    Methods in io.fluentlenium.core.conditions with annotations of type Message
    Modifier and Type
    Method
    Description
    default boolean
    FluentConditions.attribute (String name, String value)
    Check that the attribute has the given value.
    boolean
    FluentConditions.className (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 (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
    AbstractIntegerConditions.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
    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.
    default boolean
    FluentConditions.id (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 (String regex)
    Check that this matches the given regular expression string.
    boolean
    StringConditions.matches (Pattern pattern)
    Check that this matches the given regular expression pattern.
    default 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
    FluentConditions.present()
    Check that this element is present
    boolean
    FluentListConditions.present()
    Check that the currently validated element of this list 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.
    default boolean
    FluentConditions.tagName (String tagName)
    Check that this element has the given tagName
    default boolean
    FluentConditions.text (String text)
    Check that this element has the given text.
    default boolean
    FluentConditions.textContent (String anotherString)
    Check conditions on this element text content.
    default boolean
    FluentConditions.value (String value)
    Check that this element has the given value
    boolean
    Conditions.verify (Predicate<T> predicate)
    Check that the given predicate is verified against this condition object.
    boolean
    FluentListConditions.verify (Predicate<FluentWebElement> predicate, boolean defaultValue)
    Check that the given predicate is verified.
    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.