Package io.fluentlenium.core.conditions
Class AbstractFluentListConditions
java.lang.Object
io.fluentlenium.core.conditions.AbstractFluentListConditions
- All Implemented Interfaces:
Conditions<FluentWebElement>,FluentConditions,FluentListConditions,ListConditionsElements
- Direct Known Subclasses:
AtLeastOneElementConditions,EachElementConditions
public abstract class AbstractFluentListConditions
extends Object
implements FluentListConditions, ListConditionsElements
Abstract class conditions on list of elements.
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedAbstractFluentListConditions(List<? extends FluentWebElement> elements) Creates a new conditions on list of elements. -
Method Summary
Modifier and TypeMethodDescriptionCheck conditions on the given attribute the attribute has the given value.booleanCheck that the class attribute has the given class name.booleanCheck that this element is visible and enabled such that you can click it.booleanCheck that this element is displayed.booleanenabled()Check that this element is enabled.List<? extends FluentWebElement>Get the actual list of elements.protected List<? extends FluentWebElement>Get the underlying list of elementsid()Check conditions on this element id.protected booleanIs this conditions list negated ?name()Check conditions on this element name.booleanpresent()Check that the currently validated element of this list is present.check conditions on rectangle of this elementbooleanselected()Check that this element is selected.voidsetNegation(boolean negation) Set negation valuesize()Check that this element list has the given size.booleansize(int size) Check that this element list has the given size.booleanstale()Check that this element is no longer attached to the DOM.tagName()Check conditions on this element tagName.text()Check conditions on this element text.Check conditions on this element text content.value()Check conditions on this element value.booleanverify(Predicate<FluentWebElement> predicate) Check that the given predicate is verified against this condition object.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.fluentlenium.core.conditions.FluentConditions
attribute, id, name, tagName, text, textContent, valueMethods inherited from interface io.fluentlenium.core.conditions.FluentListConditions
not, verify
-
Constructor Details
-
AbstractFluentListConditions
Creates a new conditions on list of elements.- Parameters:
elements- underlying elements
-
-
Method Details
-
size
public boolean size(int size) Description copied from interface:FluentListConditionsCheck that this element list has the given size.- Specified by:
sizein interfaceFluentListConditions- Parameters:
size- size of the list- Returns:
- true if it has the given size, false otherwise
-
isNegation
protected boolean isNegation()Is this conditions list negated ?- Returns:
- true if this conditions list is negated, false otherwise.
-
setNegation
public void setNegation(boolean negation) Set negation value- Parameters:
negation- negation value
-
getElements
Get the underlying list of elements- Returns:
- underlying list of elements
-
getActualElements
Description copied from interface:ListConditionsElementsGet the actual list of elements.- Specified by:
getActualElementsin interfaceListConditionsElements- Returns:
- actual list of elements on which conditions are performed.
-
size
Description copied from interface:FluentListConditionsCheck that this element list has the given size.- Specified by:
sizein interfaceFluentListConditions- Returns:
- an object to configure advanced conditions on size
-
verify
Description copied from interface:ConditionsCheck that the given predicate is verified against this condition object.- Specified by:
verifyin interfaceConditions<FluentWebElement>- Parameters:
predicate- predicate to check- Returns:
- true if the predicated is checked, false otherwise
-
present
public boolean present()Description copied from interface:FluentListConditionsCheck that the currently validated element of this list is present.- Specified by:
presentin interfaceFluentConditions- Specified by:
presentin interfaceFluentListConditions- Returns:
- true if the element is present, false otherwise
-
clickable
public boolean clickable()Description copied from interface:FluentConditionsCheck that this element is visible and enabled such that you can click it.- Specified by:
clickablein interfaceFluentConditions- Returns:
- true if the element can be clicked, false otherwise.
-
stale
public boolean stale()Description copied from interface:FluentConditionsCheck that this element is no longer attached to the DOM.- Specified by:
stalein interfaceFluentConditions- Returns:
- false if the element is still attached to the DOM, true otherwise.
-
displayed
public boolean displayed()Description copied from interface:FluentConditionsCheck that this element is displayed.- Specified by:
displayedin interfaceFluentConditions- Returns:
- true if element is displayed, false otherwise.
-
enabled
public boolean enabled()Description copied from interface:FluentConditionsCheck that this element is enabled.- Specified by:
enabledin interfaceFluentConditions- Returns:
- true if element is enabled, false otherwise.
-
selected
public boolean selected()Description copied from interface:FluentConditionsCheck that this element is selected.- Specified by:
selectedin interfaceFluentConditions- Returns:
- true if element is selected, false otherwise.
-
attribute
Description copied from interface:FluentConditionsCheck conditions on the given attribute the attribute has the given value.- Specified by:
attributein interfaceFluentConditions- Parameters:
name- attribute name to check- Returns:
- An object to configure text attribute value conditions.
-
id
Description copied from interface:FluentConditionsCheck conditions on this element id.- Specified by:
idin interfaceFluentConditions- Returns:
- An object to configure id conditions.
-
name
Description copied from interface:FluentConditionsCheck conditions on this element name.- Specified by:
namein interfaceFluentConditions- Returns:
- An object to configure name conditions.
-
tagName
Description copied from interface:FluentConditionsCheck conditions on this element tagName.- Specified by:
tagNamein interfaceFluentConditions- Returns:
- An object to configure tagName conditions.
-
value
Description copied from interface:FluentConditionsCheck conditions on this element value.- Specified by:
valuein interfaceFluentConditions- Returns:
- An object to configure value conditions.
-
text
Description copied from interface:FluentConditionsCheck conditions on this element text.- Specified by:
textin interfaceFluentConditions- Returns:
- An object to configure text conditions.
-
textContent
Description copied from interface:FluentConditionsCheck conditions on this element text content.- Specified by:
textContentin interfaceFluentConditions- Returns:
- An object to configure text content conditions.
-
rectangle
Description copied from interface:FluentConditionscheck conditions on rectangle of this element- Specified by:
rectanglein interfaceFluentConditions- Returns:
- An object to configure advanced position conditions
-
className
Description copied from interface:FluentConditionsCheck that the class attribute has the given class name.- Specified by:
classNamein interfaceFluentConditions- Parameters:
className- class name- Returns:
- true if it has the given class name, false otherwise.
-