Package io.fluentlenium.core.conditions
Interface FluentConditions
- All Superinterfaces:
Conditions<FluentWebElement>
- All Known Subinterfaces:
FluentListConditions
- All Known Implementing Classes:
AbstractFluentListConditions
,AtLeastOneElementConditions
,EachElementConditions
,WebElementConditions
Conditions API for elements.
-
Method Summary
Modifier and TypeMethodDescriptionCheck conditions on the given attribute the attribute has the given value.default boolean
Check that the attribute has the given value.boolean
Check that the class attribute has the given class name.boolean
Check that this element is visible and enabled such that you can click it.boolean
Check that this element is displayed.boolean
enabled()
Check that this element is enabled.id()
Check conditions on this element id.default boolean
Check that this element has the given id.name()
Check conditions on this element name.default boolean
Check that this element has the given namenot()
Negates this condition object.boolean
present()
Check that this element is presentcheck conditions on rectangle of this elementboolean
selected()
Check that this element is selected.boolean
stale()
Check that this element is no longer attached to the DOM.tagName()
Check conditions on this element tagName.default boolean
Check that this element has the given tagNametext()
Check conditions on this element text.default boolean
Check that this element has the given text.Check conditions on this element text content.default boolean
textContent
(String anotherString) Check conditions on this element text content.value()
Check conditions on this element value.default boolean
Check that this element has the given valueMethods inherited from interface io.fluentlenium.core.conditions.Conditions
verify
-
Method Details
-
not
FluentConditions not()Negates this condition object.- Specified by:
not
in interfaceConditions<FluentWebElement>
- Returns:
- a new negated condition object
-
present
boolean present()Check that this element is present- Returns:
- true if the element is present, false otherwise.
-
clickable
boolean clickable()Check that this element is visible and enabled such that you can click it.- Returns:
- true if the element can be clicked, false otherwise.
-
stale
boolean stale()Check that this element is no longer attached to the DOM.- Returns:
- false if the element is still attached to the DOM, true otherwise.
-
displayed
boolean displayed()Check that this element is displayed.- Returns:
- true if element is displayed, false otherwise.
-
enabled
boolean enabled()Check that this element is enabled.- Returns:
- true if element is enabled, false otherwise.
-
selected
boolean selected()Check that this element is selected.- Returns:
- true if element is selected, false otherwise.
-
id
StringConditions id()Check conditions on this element id.- Returns:
- An object to configure id conditions.
-
id
Check that this element has the given id.- Parameters:
id
- id to check- Returns:
- true if the element has the given id, false otherwise.
-
name
StringConditions name()Check conditions on this element name.- Returns:
- An object to configure name conditions.
-
name
Check that this element has the given name- Parameters:
name
- name to check- Returns:
- true if the element has the given name, false otherwise.
-
tagName
StringConditions tagName()Check conditions on this element tagName.- Returns:
- An object to configure tagName conditions.
-
tagName
Check that this element has the given tagName- Parameters:
tagName
- tagName to check- Returns:
- true if the element has the given tagName, false otherwise.
-
value
StringConditions value()Check conditions on this element value.- Returns:
- An object to configure value conditions.
-
value
Check that this element has the given value- Parameters:
value
- value to check- Returns:
- true if the element has the given value, false otherwise.
-
text
Check that this element has the given text.- Parameters:
text
- string to compare with- Returns:
- true if the element has the given text, false otherwise.
- See Also:
-
text
StringConditions text()Check conditions on this element text.- Returns:
- An object to configure text conditions.
-
textContent
Check conditions on this element text content.- Parameters:
anotherString
- string to compare with- Returns:
- true if the element has the given text content, false otherwise.
- See Also:
-
textContent
StringConditions textContent()Check conditions on this element text content.- Returns:
- An object to configure text content conditions.
-
attribute
Check that the attribute has the given value.- Parameters:
name
- attribute name to checkvalue
- attribute value to check- Returns:
- true if the given attribute has the given value, false otherwise.
-
attribute
Check conditions on the given attribute the attribute has the given value.- Parameters:
name
- attribute name to check- Returns:
- An object to configure text attribute value conditions.
-
rectangle
RectangleConditions rectangle()check conditions on rectangle of this element- Returns:
- An object to configure advanced position conditions
-
className
Check that the class attribute has the given class name.- Parameters:
className
- class name- Returns:
- true if it has the given class name, false otherwise.
-