Uses of Class
io.fluentlenium.core.domain.FluentWebElement
Packages that use FluentWebElement
Package
Description
-
Uses of FluentWebElement in io.fluentlenium.core
Methods in io.fluentlenium.core with type parameters of type FluentWebElementModifier and TypeMethodDescriptiondefault <T extends FluentWebElement>
FluentList<T>FluentControl.asFluentList(Class<T> componentClass, Iterable<org.openqa.selenium.WebElement> elements) default <T extends FluentWebElement>
FluentList<T>FluentControl.asFluentList(Class<T> componentClass, List<org.openqa.selenium.WebElement> elements) default <T extends FluentWebElement>
FluentList<T>FluentControl.asFluentList(Class<T> componentClass, org.openqa.selenium.WebElement... elements) default <T extends FluentWebElement>
FluentList<T>FluentControl.newFluentList(Class<T> componentClass) default <T extends FluentWebElement>
FluentList<T>FluentControl.newFluentList(Class<T> componentClass, List<T> elements) default <T extends FluentWebElement>
FluentList<T>FluentControl.newFluentList(Class<T> componentClass, T... elements) Methods in io.fluentlenium.core that return FluentWebElementModifier and TypeMethodDescriptiondefault FluentWebElementFluentControl.el(org.openqa.selenium.WebElement rawElement) default FluentWebElementFluentControl.newFluent(org.openqa.selenium.WebElement element) Methods in io.fluentlenium.core that return types with arguments of type FluentWebElementModifier and TypeMethodDescriptiondefault FluentList<FluentWebElement>FluentControl.asFluentList(Iterable<org.openqa.selenium.WebElement> elements) default FluentList<FluentWebElement>FluentControl.asFluentList(List<org.openqa.selenium.WebElement> elements) default FluentList<FluentWebElement>FluentControl.asFluentList(org.openqa.selenium.WebElement... elements) default FluentList<FluentWebElement>FluentControl.find(SearchFilter... filters) default FluentList<FluentWebElement>FluentControl.find(String selector, SearchFilter... filters) default FluentList<FluentWebElement>default FluentList<FluentWebElement>FluentControl.find(org.openqa.selenium.By locator, SearchFilter... filters) default FluentList<FluentWebElement>FluentControl.newFluentList()default FluentList<FluentWebElement>FluentControl.newFluentList(FluentWebElement... elements) default FluentList<FluentWebElement>FluentControl.newFluentList(List<FluentWebElement> elements) Methods in io.fluentlenium.core with parameters of type FluentWebElementModifier and TypeMethodDescriptiondefault FluentList<FluentWebElement>FluentControl.newFluentList(FluentWebElement... elements) default <T extends FluentWebElement>
FluentList<T>FluentControl.newFluentList(Class<T> componentClass, T... elements) default voidFluentControl.switchTo(FluentWebElement element) voidFluentDriver.switchTo(FluentWebElement element) Method parameters in io.fluentlenium.core with type arguments of type FluentWebElementModifier and TypeMethodDescriptiondefault FluentList<FluentWebElement>FluentControl.newFluentList(List<FluentWebElement> elements) default voidFluentControl.switchTo(FluentList<? extends FluentWebElement> elements) voidFluentDriver.switchTo(FluentList<? extends FluentWebElement> elements) -
Uses of FluentWebElement in io.fluentlenium.core.action
Classes in io.fluentlenium.core.action with type parameters of type FluentWebElementModifier and TypeClassDescriptionclassBaseFill<E extends FluentWebElement>Common class form filling features storing the potential elements to fill.classFill<E extends FluentWebElement>Default form filling features.classFillSelect<E extends FluentWebElement>Provides functionality to select values in<select>elements.interfaceFluentActions<T,E extends FluentWebElement> All actions that can be used on the list or on a web element.Methods in io.fluentlenium.core.action with parameters of type FluentWebElementModifier and TypeMethodDescriptionvoidWindowAction.clickAndCloseCurrent(FluentWebElement button) Clicks button, which closes current window and switches to last window (in set returned byWebDriver.getWindowHandles()).WindowAction.clickAndOpenNew(FluentWebElement button) Clicks button, which opens new window and switches to newly opened window.Constructors in io.fluentlenium.core.action with parameters of type FluentWebElementModifierConstructorDescriptionKeyboardElementActions(org.openqa.selenium.WebDriver driver, FluentWebElement fluentWebElement) Creates a new object to execute actions with the keyboard, using given selenium driver and element.KeyboardElementActions(org.openqa.selenium.WebDriver driver, FluentWebElement fluentWebElement, org.openqa.selenium.interactions.Actions actions) Creates a new object to execute actions with the keyboard, using given selenium driver and element.MouseElementActions(org.openqa.selenium.WebDriver driver, FluentWebElement fluentWebElement) Creates a new mouse element actions.MouseElementActions(org.openqa.selenium.WebDriver driver, FluentWebElement fluentWebElement, org.openqa.selenium.interactions.Actions actions) Creates a new mouse element actions.Constructor parameters in io.fluentlenium.core.action with type arguments of type FluentWebElementModifierConstructorDescriptionFluentJavascriptActionsImpl(T self, JavascriptControl javascript, Supplier<FluentWebElement> element) Creates a new fluent javascript actions. -
Uses of FluentWebElement in io.fluentlenium.core.components
Methods in io.fluentlenium.core.components with type parameters of type FluentWebElementModifier and TypeMethodDescription<T extends FluentWebElement>
FluentList<T>AbstractComponentInstantiator.asFluentList(Class<T> componentClass, Iterable<org.openqa.selenium.WebElement> elements) <T extends FluentWebElement>
FluentList<T>AbstractComponentInstantiator.asFluentList(Class<T> componentClass, List<org.openqa.selenium.WebElement> elements) <T extends FluentWebElement>
FluentList<T>AbstractComponentInstantiator.asFluentList(Class<T> componentClass, org.openqa.selenium.WebElement... elements) <T extends FluentWebElement>
FluentList<T>ComponentInstantiator.asFluentList(Class<T> componentClass, Iterable<org.openqa.selenium.WebElement> elements) Create and register a new fluent list.<T extends FluentWebElement>
FluentList<T>ComponentInstantiator.asFluentList(Class<T> componentClass, List<org.openqa.selenium.WebElement> elements) Create and register a new fluent list.<T extends FluentWebElement>
FluentList<T>ComponentInstantiator.asFluentList(Class<T> componentClass, org.openqa.selenium.WebElement... elements) Create and register a new fluent list.<T extends FluentWebElement>
FluentList<T>AbstractComponentInstantiator.newFluentList(Class<T> componentClass) <T extends FluentWebElement>
FluentList<T>AbstractComponentInstantiator.newFluentList(Class<T> componentClass, List<T> elements) <T extends FluentWebElement>
FluentList<T>AbstractComponentInstantiator.newFluentList(Class<T> componentClass, T... elements) <T extends FluentWebElement>
FluentList<T>ComponentInstantiator.newFluentList(Class<T> componentClass) Create and register an empty fluent list of the provided type.<T extends FluentWebElement>
FluentList<T>ComponentInstantiator.newFluentList(Class<T> componentClass, List<T> elements) Create and register a new fluent list.<T extends FluentWebElement>
FluentList<T>ComponentInstantiator.newFluentList(Class<T> componentClass, T... elements) Create and register a new fluent list.Methods in io.fluentlenium.core.components that return FluentWebElementModifier and TypeMethodDescriptionAbstractComponentInstantiator.newFluent(org.openqa.selenium.WebElement element) ComponentInstantiator.newFluent(org.openqa.selenium.WebElement element) Create and register a newFluentWebElementfrom the givenWebElement.Methods in io.fluentlenium.core.components that return types with arguments of type FluentWebElementModifier and TypeMethodDescriptionAbstractComponentInstantiator.asFluentList(Iterable<org.openqa.selenium.WebElement> elements) AbstractComponentInstantiator.asFluentList(List<org.openqa.selenium.WebElement> elements) AbstractComponentInstantiator.asFluentList(org.openqa.selenium.WebElement... elements) ComponentInstantiator.asFluentList(Iterable<org.openqa.selenium.WebElement> elements) Create and register a new fluent list from the argument collection of WebElements.ComponentInstantiator.asFluentList(List<org.openqa.selenium.WebElement> elements) Create and register a new fluent list from the argument list of WebElements.ComponentInstantiator.asFluentList(org.openqa.selenium.WebElement... elements) Create and register a new fluent list from the argument WebElements.AbstractComponentInstantiator.newFluentList()AbstractComponentInstantiator.newFluentList(FluentWebElement... elements) AbstractComponentInstantiator.newFluentList(List<FluentWebElement> elements) ComponentInstantiator.newFluentList()Create and register an empty fluent list.ComponentInstantiator.newFluentList(FluentWebElement... elements) Create and register a new fluent list from the argument FluentWebElements.ComponentInstantiator.newFluentList(List<FluentWebElement> elements) Create and register a new fluent list from the argument list of FluentWebElements.Methods in io.fluentlenium.core.components with parameters of type FluentWebElementModifier and TypeMethodDescriptionAbstractComponentInstantiator.newFluentList(FluentWebElement... elements) <T extends FluentWebElement>
FluentList<T>AbstractComponentInstantiator.newFluentList(Class<T> componentClass, T... elements) ComponentInstantiator.newFluentList(FluentWebElement... elements) Create and register a new fluent list from the argument FluentWebElements.<T extends FluentWebElement>
FluentList<T>ComponentInstantiator.newFluentList(Class<T> componentClass, T... elements) Create and register a new fluent list.Method parameters in io.fluentlenium.core.components with type arguments of type FluentWebElementModifier and TypeMethodDescriptionAbstractComponentInstantiator.newFluentList(List<FluentWebElement> elements) ComponentInstantiator.newFluentList(List<FluentWebElement> elements) Create and register a new fluent list from the argument list of FluentWebElements. -
Uses of FluentWebElement in io.fluentlenium.core.conditions
Fields in io.fluentlenium.core.conditions with type parameters of type FluentWebElementModifier and TypeFieldDescriptionprotected Conditions<FluentWebElement>BaseObjectListConditions.conditionsprotected final Function<FluentWebElement,C> BaseObjectListConditions.conditionsGetterprotected final Function<FluentWebElement,T> BaseObjectListConditions.objectGetterMethods in io.fluentlenium.core.conditions that return types with arguments of type FluentWebElementModifier and TypeMethodDescriptionList<? extends FluentWebElement>AbstractFluentListConditions.getActualElements()List<? extends FluentWebElement>ListConditionsElements.getActualElements()Get the actual list of elements.protected List<? extends FluentWebElement>AbstractFluentListConditions.getElements()Get the underlying list of elementsprotected AbstractObjectConditions<List<? extends FluentWebElement>>DynamicIntegerConditionsImpl.newInstance(boolean negationValue) protected AbstractObjectConditions<FluentWebElement>WebElementConditions.newInstance(boolean negationValue) Method parameters in io.fluentlenium.core.conditions with type arguments of type FluentWebElementModifier and TypeMethodDescriptionprotected Predicate<FluentDriver>AtLeastOneElementConditions.buildAtLeastOnePredicate(Predicate<FluentWebElement> predicate, boolean defaultValue) Build predicate for this condition.protected Predicate<FluentDriver>EachElementConditions.buildEachElementPredicate(Predicate<FluentWebElement> predicate, boolean defaultValue) Build predicate for this condition.booleanAbstractFluentListConditions.verify(Predicate<FluentWebElement> predicate) booleanAtLeastOneElementConditions.verify(Predicate<FluentWebElement> predicate, boolean defaultValue) booleanEachElementConditions.verify(Predicate<FluentWebElement> predicate, boolean defaultValue) booleanFluentListConditions.verify(Predicate<FluentWebElement> predicate, boolean defaultValue) Check that the given predicate is verified.Constructors in io.fluentlenium.core.conditions with parameters of type FluentWebElementModifierConstructorDescriptionWebElementConditions(FluentWebElement element) Creates a new conditions object on elementWebElementConditions(FluentWebElement element, boolean negation) Creates a new conditions object on elementConstructor parameters in io.fluentlenium.core.conditions with type arguments of type FluentWebElementModifierConstructorDescriptionprotectedAbstractFluentListConditions(List<? extends FluentWebElement> elements) Creates a new conditions on list of elements.AtLeastOneElementConditions(List<? extends FluentWebElement> elements) Creates a new condition.BaseObjectListConditions(Conditions<FluentWebElement> conditions, Function<FluentWebElement, T> objectGetter, Function<FluentWebElement, C> conditionsGetter) Creates a new list conditionsBaseObjectListConditions(Conditions<FluentWebElement> conditions, Function<FluentWebElement, T> objectGetter, Function<FluentWebElement, C> conditionsGetter) Creates a new list conditionsDynamicIntegerConditionsImpl(Supplier<List<? extends FluentWebElement>> supplier, boolean negation) Creates a new conditions object on integer.EachElementConditions(List<? extends FluentWebElement> elements) Creates a new element list conditions.IntegerListConditionsImpl(Conditions<FluentWebElement> conditions, Function<FluentWebElement, Integer> objectGetter) Creates a new list conditions, with default integer condition implementationIntegerListConditionsImpl(Conditions<FluentWebElement> conditions, Function<FluentWebElement, Integer> objectGetter) Creates a new list conditions, with default integer condition implementationIntegerListConditionsImpl(Conditions<FluentWebElement> conditions, Function<FluentWebElement, Integer> objectGetter, Function<FluentWebElement, IntegerConditions> conditionsGetter) Creates a new list conditionsIntegerListConditionsImpl(Conditions<FluentWebElement> conditions, Function<FluentWebElement, Integer> objectGetter, Function<FluentWebElement, IntegerConditions> conditionsGetter) Creates a new list conditionsRectangleListConditionsImpl(Conditions<FluentWebElement> conditions) Creates a new list of rectangles conditions, using rectangle of the conditions elementRectangleListConditionsImpl(Conditions<FluentWebElement> conditions, Function<FluentWebElement, org.openqa.selenium.Rectangle> objectGetter, Function<FluentWebElement, RectangleConditions> conditionsGetter) Creates a new list of rectangles conditionsRectangleListConditionsImpl(Conditions<FluentWebElement> conditions, Function<FluentWebElement, org.openqa.selenium.Rectangle> objectGetter, Function<FluentWebElement, RectangleConditions> conditionsGetter) Creates a new list of rectangles conditionsStringListConditionsImpl(Conditions<FluentWebElement> conditions, Function<FluentWebElement, String> objectGetter, Function<FluentWebElement, StringConditions> conditionsGetter) Creates a new list of string conditionsStringListConditionsImpl(Conditions<FluentWebElement> conditions, Function<FluentWebElement, String> objectGetter, Function<FluentWebElement, StringConditions> conditionsGetter) Creates a new list of string conditions -
Uses of FluentWebElement in io.fluentlenium.core.conditions.wait
Method parameters in io.fluentlenium.core.conditions.wait with type arguments of type FluentWebElementModifier and TypeMethodDescriptionstatic FluentListConditionsWaitConditionProxy.each(FluentWait wait, String context, Supplier<? extends List<? extends FluentWebElement>> elementsSupplier) Build a wait proxy.static FluentConditionsWaitConditionProxy.element(FluentWait wait, String context, Supplier<? extends FluentWebElement> elementSupplier) Build a wait proxy.static FluentListConditionsWaitConditionProxy.one(FluentWait wait, String context, Supplier<? extends List<? extends FluentWebElement>> elementsSupplier) Build a wait proxy. -
Uses of FluentWebElement in io.fluentlenium.core.dom
Methods in io.fluentlenium.core.dom that return FluentWebElementMethods in io.fluentlenium.core.dom that return types with arguments of type FluentWebElementModifier and TypeMethodDescriptionDom.ancestors()Find ancestor elements.Dom.descendants()Find descendants elements (children, grandchildren, etc.).Dom.followings()Find following elements.Dom.followingSiblings()Find following sibling elements.protected FluentList<FluentWebElement>Handle an XPath axeDom.precedings()Find preceding elements.Dom.precedingSiblings()Find preceding sibling elements. -
Uses of FluentWebElement in io.fluentlenium.core.domain
Classes in io.fluentlenium.core.domain with type parameters of type FluentWebElementModifier and TypeInterfaceDescriptioninterfaceFluentList<E extends FluentWebElement>Wraps a list ofFluentWebElement.classFluentListImpl<E extends FluentWebElement>Default implementation ofFluentListandComponentList.Methods in io.fluentlenium.core.domain with type parameters of type FluentWebElementModifier and TypeMethodDescription<T extends FluentWebElement>
FluentList<T>Wrap all underlying elements in a component.<T extends FluentWebElement>
FluentList<T><T extends FluentWebElement>
FluentList<T>FluentWebElement.asFluentList(Class<T> componentClass, Iterable<org.openqa.selenium.WebElement> elements) <T extends FluentWebElement>
FluentList<T>FluentWebElement.asFluentList(Class<T> componentClass, List<org.openqa.selenium.WebElement> elements) <T extends FluentWebElement>
FluentList<T>FluentWebElement.asFluentList(Class<T> componentClass, org.openqa.selenium.WebElement... elements) <T extends FluentWebElement>
FluentList<T>FluentWebElement.newFluentList(Class<T> componentClass) <T extends FluentWebElement>
FluentList<T>FluentWebElement.newFluentList(Class<T> componentClass, List<T> elements) <T extends FluentWebElement>
FluentList<T>FluentWebElement.newFluentList(Class<T> componentClass, T... elements) Methods in io.fluentlenium.core.domain that return FluentWebElementModifier and TypeMethodDescriptionFluentWebElement.clear()Clear the elementFluentWebElement.clearReactInput()Clear React input using Backspace onlyFluentWebElement.click()FluentWebElement.contextClick()FluentWebElement.doubleClick()FluentWebElement.el(org.openqa.selenium.WebElement rawElement) FluentWebElement.frame()FluentWebElement.hoverOver()FluentWebElement.modifyAttribute(String attributeName, String attributeValue) FluentWebElement.newFluent(org.openqa.selenium.WebElement element) FluentWebElement.noHook()FluentWebElement.noHook(Class<? extends FluentHook>... hooks) FluentWebElement.noHookInstance()FluentWebElement.noHookInstance(Class<? extends FluentHook>... hooks) FluentWebElement.now()FluentWebElement.now(boolean force) FluentWebElement.reset()FluentWebElement.restoreHooks()FluentWebElement.scrollIntoView()FluentWebElement.scrollIntoView(boolean alignWithTop) FluentWebElement.scrollToCenter()FluentWebElement.submit()Submit the elementFluentWebElement.waitAndClick()FluentWebElement.waitAndClick(Duration duration) <O,H extends FluentHook<O>>
FluentWebElement<O,H extends FluentHook<O>>
FluentWebElementFluentWebElement.withLabelHint(String... labelHint) Set the text elementMethods in io.fluentlenium.core.domain that return types with arguments of type FluentWebElementModifier and TypeMethodDescriptionFluentWebElement.asFluentList(Iterable<org.openqa.selenium.WebElement> elements) FluentWebElement.asFluentList(List<org.openqa.selenium.WebElement> elements) FluentWebElement.asFluentList(org.openqa.selenium.WebElement... elements) FluentWebElement.asList()Converts this element as a single element list.FluentWebElement.fill()FluentWebElement.fillSelect()FluentWebElement.find(SearchFilter... filters) FluentWebElement.find(String selector, SearchFilter... filters) FluentWebElement.find(org.openqa.selenium.By locator, SearchFilter... filters) FluentWebElement.getLabel()FluentWebElement.newFluentList()FluentWebElement.newFluentList(FluentWebElement... elements) FluentWebElement.newFluentList(List<FluentWebElement> elements) FluentWebElement.optional()Methods in io.fluentlenium.core.domain with parameters of type FluentWebElementModifier and TypeMethodDescriptionFluentWebElement.newFluentList(FluentWebElement... elements) <T extends FluentWebElement>
FluentList<T>FluentWebElement.newFluentList(Class<T> componentClass, T... elements) voidFluentWebElement.switchTo(FluentWebElement element) Method parameters in io.fluentlenium.core.domain with type arguments of type FluentWebElementModifier and TypeMethodDescriptionFluentWebElement.newFluentList(List<FluentWebElement> elements) <R> RFluentWebElement.noHook(Class<? extends FluentHook> hook, Function<FluentWebElement, R> function) <R> RFluentWebElement.noHook(Function<FluentWebElement, R> function) voidFluentWebElement.switchTo(FluentList<? extends FluentWebElement> elements) -
Uses of FluentWebElement in io.fluentlenium.core.events
Methods in io.fluentlenium.core.events with parameters of type FluentWebElementModifier and TypeMethodDescriptionvoidEventListener.afterChangeValueOf(FluentWebElement element, org.openqa.selenium.WebDriver driver, CharSequence[] charSequence) Called afterWebElement.clear(),WebElement.sendKeys(java.lang.CharSequence...),WebElement.sendKeys(CharSequence...).voidEventsSupport.afterChangeValueOf(FluentWebElement element, org.openqa.selenium.WebDriver driver, CharSequence[] charSequence) voidEventListener.afterClickOn(FluentWebElement element, org.openqa.selenium.WebDriver driver) Called afterWebElement.click().voidEventsSupport.afterClickOn(FluentWebElement element, org.openqa.selenium.WebDriver driver) voidEventListener.afterFindBy(org.openqa.selenium.By by, FluentWebElement element, org.openqa.selenium.WebDriver driver) Called afterWebDriver.findElement(...),WebDriver.findElements(...),WebElement.findElement(...),WebElement.findElements(...).voidEventsSupport.afterFindBy(org.openqa.selenium.By by, FluentWebElement element, org.openqa.selenium.WebDriver driver) voidEventListener.afterGetText(FluentWebElement webElement, org.openqa.selenium.WebDriver webDriver, String s) Called afterWebElement.getText()()}voidEventsSupport.afterGetText(FluentWebElement webElement, org.openqa.selenium.WebDriver webDriver, String s) voidEventListener.beforeChangeValueOf(FluentWebElement element, org.openqa.selenium.WebDriver driver, CharSequence[] charSequence) Called beforeWebElement.clear(),WebElement.sendKeys(java.lang.CharSequence...),WebElement.sendKeys(CharSequence...).voidEventsSupport.beforeChangeValueOf(FluentWebElement element, org.openqa.selenium.WebDriver driver, CharSequence[] charSequence) voidEventListener.beforeClickOn(FluentWebElement element, org.openqa.selenium.WebDriver driver) Called beforeWebElement.click().voidEventsSupport.beforeClickOn(FluentWebElement element, org.openqa.selenium.WebDriver driver) voidEventListener.beforeFindBy(org.openqa.selenium.By by, FluentWebElement element, org.openqa.selenium.WebDriver driver) Called beforeWebDriver.findElement(...),WebDriver.findElements(...),WebElement.findElement(...),#findElement WebElement.findElements(...).voidEventsSupport.beforeFindBy(org.openqa.selenium.By by, FluentWebElement element, org.openqa.selenium.WebDriver driver) voidEventListener.beforeGetText(FluentWebElement webElement, org.openqa.selenium.WebDriver webDriver) Called beforeWebElement.getText()()}voidEventsSupport.beforeGetText(FluentWebElement webElement, org.openqa.selenium.WebDriver webDriver) voidElementListener.on(FluentWebElement element, org.openqa.selenium.WebDriver driver) Called when something occurs on an element.voidFindByListener.on(org.openqa.selenium.By by, FluentWebElement element, org.openqa.selenium.WebDriver driver) Invoked when an element has been found. -
Uses of FluentWebElement in io.fluentlenium.core.filter
Methods in io.fluentlenium.core.filter that return types with arguments of type FluentWebElementModifier and TypeMethodDescriptionAttributeFilter.applyFilter(Collection<FluentWebElement> elements) PredicateFilter.applyFilter(Collection<FluentWebElement> elements) Methods in io.fluentlenium.core.filter with parameters of type FluentWebElementModifier and TypeMethodDescriptionbooleanAttributeFilterPredicate.test(FluentWebElement element) Method parameters in io.fluentlenium.core.filter with type arguments of type FluentWebElementModifier and TypeMethodDescriptionAttributeFilter.applyFilter(Collection<FluentWebElement> elements) PredicateFilter.applyFilter(Collection<FluentWebElement> elements) static PredicateFilterFilterConstructor.withPredicate(Predicate<FluentWebElement> predicate) Create a filter based on a element predicate -
Uses of FluentWebElement in io.fluentlenium.core.hook
Methods in io.fluentlenium.core.hook that return FluentWebElementModifier and TypeMethodDescriptionBaseFluentHook.getFluentWebElement()Get the underlying element as a FluentWebElement. -
Uses of FluentWebElement in io.fluentlenium.core.inject
Methods in io.fluentlenium.core.inject that return FluentWebElementModifier and TypeMethodDescriptionContainerFluentControl.el(io.appium.java_client.AppiumBy locator, SearchFilter... filters) ContainerFluentControl.el(SearchFilter... filters) ContainerFluentControl.el(String selector, SearchFilter... filters) ContainerFluentControl.el(org.openqa.selenium.By locator, SearchFilter... filters) ContainerFluentControl.el(org.openqa.selenium.WebElement rawElement) Methods in io.fluentlenium.core.inject that return types with arguments of type FluentWebElementModifier and TypeMethodDescriptionContainerFluentControl.$(io.appium.java_client.AppiumBy locator, SearchFilter... filters) ContainerFluentControl.$(SearchFilter... filters) ContainerFluentControl.$(String selector, SearchFilter... filters) ContainerFluentControl.$(org.openqa.selenium.By locator, SearchFilter... filters) ContainerFluentControl.find(SearchFilter... filters) ContainerFluentControl.find(String selector, SearchFilter... filters) ContainerFluentControl.find(org.openqa.selenium.By locator, SearchFilter... filters) Constructors in io.fluentlenium.core.inject with parameters of type FluentWebElementModifierConstructorDescriptionUnshadower(org.openqa.selenium.WebDriver webDriver, FluentWebElement fluentWebElement) -
Uses of FluentWebElement in io.fluentlenium.core.search
Classes in io.fluentlenium.core.search with type parameters of type FluentWebElementModifier and TypeInterfaceDescriptioninterfaceSearchControl<E extends FluentWebElement>Control interface to search for elements.Methods in io.fluentlenium.core.search that return FluentWebElementMethods in io.fluentlenium.core.search that return types with arguments of type FluentWebElementModifier and TypeMethodDescriptionSearchFilter.applyFilter(Collection<FluentWebElement> elements) Apply the filter.Search.find(SearchFilter... filters) Central methods to find elements on the page with filters.Search.find(String selector, SearchFilter... filters) Central methods to find elements on the page.Search.find(org.openqa.selenium.By locator, SearchFilter... filters) Method parameters in io.fluentlenium.core.search with type arguments of type FluentWebElementModifier and TypeMethodDescriptionSearchFilter.applyFilter(Collection<FluentWebElement> elements) Apply the filter. -
Uses of FluentWebElement in io.fluentlenium.core.switchto
Methods in io.fluentlenium.core.switchto that return FluentWebElementModifier and TypeMethodDescriptionFluentTargetLocator.activeElement()Switches to the element that currently has focus within the document currently "switched to", or the body element if this cannot be detected.FluentTargetLocatorImpl.activeElement()Methods in io.fluentlenium.core.switchto with parameters of type FluentWebElementModifier and TypeMethodDescriptionFluentTargetLocator.frame(FluentWebElement frameElement) Select a frame using its previously locatedWebElement.FluentTargetLocatorImpl.frame(FluentWebElement frameElement) -
Uses of FluentWebElement in io.fluentlenium.core.wait
Methods in io.fluentlenium.core.wait with parameters of type FluentWebElementModifier and TypeMethodDescriptionFluentWait.until(FluentWebElement element) FluentWaitConditions.until(FluentWebElement element) Get a conditions object used to wait for condition on given element.FluentWaitElement.until(FluentWebElement element) FluentWaitElementList.until(FluentWebElement element) Method parameters in io.fluentlenium.core.wait with type arguments of type FluentWebElementModifier and TypeMethodDescriptionFluentWait.until(List<? extends FluentWebElement> elements) FluentWaitConditions.until(List<? extends FluentWebElement> elements) Get a conditions object used to wait for a condition on given elements.FluentWaitElement.until(List<? extends FluentWebElement> elements) FluentWaitElementList.until(List<? extends FluentWebElement> elements) FluentWait.untilEach(List<? extends FluentWebElement> elements) FluentWaitConditions.untilEach(List<? extends FluentWebElement> elements) Get a conditions object used to wait for a condition on given elements.FluentWaitElement.untilEach(List<? extends FluentWebElement> elements) FluentWaitElementList.untilEach(List<? extends FluentWebElement> elements) FluentWait.untilEachElements(Supplier<? extends List<? extends FluentWebElement>> elements) FluentWaitConditions.untilEachElements(Supplier<? extends List<? extends FluentWebElement>> elements) Get a conditions object used to wait for a condition on given elements.FluentWaitElement.untilEachElements(Supplier<? extends List<? extends FluentWebElement>> selector) FluentWaitElementList.untilEachElements(Supplier<? extends List<? extends FluentWebElement>> selector) FluentWait.untilElement(Supplier<? extends FluentWebElement> element) FluentWaitConditions.untilElement(Supplier<? extends FluentWebElement> element) Get a conditions object used to wait for a condition on given element.FluentWaitElement.untilElement(Supplier<? extends FluentWebElement> selector) FluentWaitElementList.untilElement(Supplier<? extends FluentWebElement> selector) FluentWait.untilElements(Supplier<? extends List<? extends FluentWebElement>> elements) FluentWaitConditions.untilElements(Supplier<? extends List<? extends FluentWebElement>> elements) Get a conditions object used to wait for a condition on given elements.FluentWaitElement.untilElements(Supplier<? extends List<? extends FluentWebElement>> selector) FluentWaitElementList.untilElements(Supplier<? extends List<? extends FluentWebElement>> selector) Constructors in io.fluentlenium.core.wait with parameters of type FluentWebElementModifierConstructorDescriptionFluentWaitElement(FluentWait controlWait, FluentWebElement element) Creates a new fluent wait for a given element.Constructor parameters in io.fluentlenium.core.wait with type arguments of type FluentWebElementModifierConstructorDescriptionFluentWaitElementList(FluentWait controlWait, List<? extends FluentWebElement> elements) Creates a new fluent wait for a given elements.