| Modifier and Type | Method and Description |
|---|---|
FluentWebElement |
Fluent.$(org.openqa.selenium.By locator,
Integer number,
Filter... filters)
Return the elements at the number position into the the lists corresponding to the cssSelector with it filters
|
FluentWebElement |
Fluent.$(Integer number,
Filter... filters)
Central method to find an element on the page with filters.
|
FluentWebElement |
Fluent.$(String name,
Integer number,
Filter... filters)
Central methods a find element on the page, the number indicate the index of the desired element on the list.
|
FluentWebElement |
Fluent.find(org.openqa.selenium.By locator,
Integer number,
Filter... filters)
Return the elements at the number position into the the lists corresponding to the cssSelector with it filters
|
FluentWebElement |
Fluent.find(Integer number,
Filter... filters)
Return the element at the number position in the list filtered by the specified filters.
|
FluentWebElement |
Fluent.find(String name,
Integer number,
Filter... filters)
Return the elements at the number position into the lists corresponding to the cssSelector with it filters
|
FluentWebElement |
Fluent.findFirst(org.openqa.selenium.By locator,
Filter... filters)
Return the first elements corresponding to the name and the filters
|
FluentWebElement |
Fluent.findFirst(Filter... filters)
Return the first element corresponding to the filters.
|
FluentWebElement |
Fluent.findFirst(String name,
Filter... filters)
Return the first element corresponding to the name and the filters
|
| Modifier and Type | Method and Description |
|---|---|
FluentList<FluentWebElement> |
Fluent.$(org.openqa.selenium.By locator,
Filter... filters)
Central methods to find elements on the page.
|
FluentList<FluentWebElement> |
Fluent.$(Filter... filters)
Central methods to find elements on the page with filters.
|
FluentList<FluentWebElement> |
Fluent.$(String name,
Filter... filters)
Central methods to find elements on the page.
|
FluentList<FluentWebElement> |
Fluent.find(org.openqa.selenium.By locator,
Filter... filters)
Central methods to find elements on the page.
|
FluentList<FluentWebElement> |
Fluent.find(Filter... filters)
Return the list filtered by the specified filters.
|
FluentList<FluentWebElement> |
Fluent.find(String name,
Filter... filters)
return the lists corresponding to the cssSelector with it filters
|
| Modifier and Type | Method and Description |
|---|---|
Fluent |
Fluent.clear(FluentWebElement fluentObject)
Clear the given parameters elements that are in the list
Be careful - only the visible elements are cleared
|
Fluent |
Fluent.switchTo(FluentWebElement element)
Switch to the selected Element (if element is null or not an iframe, or haven't an id then
switch to the default)
|
| Modifier and Type | Method and Description |
|---|---|
Fluent |
Fluent.clear(FluentList<FluentWebElement> fluentObject)
Clear all elements that are in the list
Be careful - only the visible elements are cleared
|
| Constructor and Description |
|---|
FillSelectConstructor(FluentWebElement element,
org.openqa.selenium.WebDriver webDriver,
Filter... filters) |
| Modifier and Type | Method and Description |
|---|---|
FluentWebElement |
Axes.parent()
Find parent element.
|
| Modifier and Type | Method and Description |
|---|---|
FluentList<FluentWebElement> |
Axes.ancestors()
Find ancestor elements.
|
FluentList<FluentWebElement> |
Axes.descendants()
Find descendants elements (children, grandchildren, etc.).
|
FluentList<FluentWebElement> |
Axes.followings()
Find following elements.
|
FluentList<FluentWebElement> |
Axes.followingSiblings()
Find following sibling elements.
|
protected FluentList<FluentWebElement> |
Axes.handleAxe(String axe) |
FluentList<FluentWebElement> |
Axes.precedings()
Find preceding elements.
|
FluentList<FluentWebElement> |
Axes.precedingSiblings()
Find preceding sibling elements.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
FluentList<E extends FluentWebElement> |
class |
FluentListImpl<E extends FluentWebElement>
Map the list to a FluentList in order to offers some events like click(), submit(), value() ...
|
| Modifier and Type | Method and Description |
|---|---|
<T extends FluentWebElement> |
FluentList.as(Class<T> componentClass)
Wrap all underlying elements in a componen..
|
<T extends FluentWebElement> |
FluentListImpl.as(Class<T> componentClass) |
| Modifier and Type | Method and Description |
|---|---|
FluentWebElement |
FluentWebElement.clear()
Clear the element
|
FluentWebElement |
FluentWebElement.click()
Click on the element
|
FluentWebElement |
FluentWebElement.doubleClick()
Double Click on the element
|
FluentWebElement |
FluentWebElement.find(org.openqa.selenium.By locator,
Integer number,
Filter... filters)
find elements into the children with the corresponding filters at the given position
|
FluentWebElement |
FluentWebElement.find(Integer number,
Filter... filters)
find element in the children with the corresponding filters at the given position
|
FluentWebElement |
FluentWebElement.find(String name,
Integer number,
Filter... filters)
find elements into the children with the corresponding filters at the given position
|
FluentWebElement |
FluentWebElement.findFirst(org.openqa.selenium.By locator,
Filter... filters)
find elements into the children with the corresponding filters at the first position
|
FluentWebElement |
FluentWebElement.findFirst(Filter... filters)
find element in the children with the corresponding filters at the first position
|
FluentWebElement |
FluentWebElement.findFirst(String name,
Filter... filters)
find elements into the children with the corresponding filters at the first position
|
FluentWebElement |
FluentWebElement.mouseOver()
Double Click on the element
|
FluentWebElement |
FluentWebElement.submit()
Submit the element
|
FluentWebElement |
FluentWebElement.text(String... text)
Set the text element
|
| Modifier and Type | Method and Description |
|---|---|
FluentList<FluentWebElement> |
FluentWebElement.find(org.openqa.selenium.By locator,
Filter... filters)
find elements into the children with the corresponding filters
|
FluentList<FluentWebElement> |
FluentWebElement.find(Filter... filters)
find elements in the children with the corresponding filters
|
FluentList<FluentWebElement> |
FluentWebElement.find(String name,
Filter... filters)
find elements into the children with the corresponding filters
|
| Modifier and Type | Method and Description |
|---|---|
void |
EventsSupport.afterChangeValueOf(FluentWebElement element,
org.openqa.selenium.WebDriver driver) |
void |
EventListener.afterChangeValueOf(FluentWebElement element,
org.openqa.selenium.WebDriver driver)
Called after
WebElement.clear(), WebElement.sendKeys(...) . |
void |
EventsSupport.afterClickOn(FluentWebElement element,
org.openqa.selenium.WebDriver driver) |
void |
EventListener.afterClickOn(FluentWebElement element,
org.openqa.selenium.WebDriver driver)
Called after
WebElement.click(). |
void |
EventsSupport.afterFindBy(org.openqa.selenium.By by,
FluentWebElement element,
org.openqa.selenium.WebDriver driver) |
void |
EventListener.afterFindBy(org.openqa.selenium.By by,
FluentWebElement element,
org.openqa.selenium.WebDriver driver)
Called after
WebDriver.findElement(...), or
WebDriver.findElements(...), or WebElement.findElement(...), or WebElement.findElements(...). |
void |
EventsSupport.beforeChangeValueOf(FluentWebElement element,
org.openqa.selenium.WebDriver driver) |
void |
EventListener.beforeChangeValueOf(FluentWebElement element,
org.openqa.selenium.WebDriver driver)
Called before
WebElement.clear(), WebElement.sendKeys(...). |
void |
EventsSupport.beforeClickOn(FluentWebElement element,
org.openqa.selenium.WebDriver driver) |
void |
EventListener.beforeClickOn(FluentWebElement element,
org.openqa.selenium.WebDriver driver)
Called before
WebElement.click(). |
void |
EventsSupport.beforeFindBy(org.openqa.selenium.By by,
FluentWebElement element,
org.openqa.selenium.WebDriver driver) |
void |
EventListener.beforeFindBy(org.openqa.selenium.By by,
FluentWebElement element,
org.openqa.selenium.WebDriver driver)
Called before
WebDriver.findElement(...), or
WebDriver.findElements(...), or WebElement.findElement(...), or WebElement.findElements(...). |
void |
FindByListener.on(org.openqa.selenium.By by,
FluentWebElement element,
org.openqa.selenium.WebDriver driver) |
void |
ElementListener.on(FluentWebElement element,
org.openqa.selenium.WebDriver driver) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
FilterPredicate.apply(FluentWebElement webElementCustom) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
SearchActions<E extends FluentWebElement> |
| Modifier and Type | Method and Description |
|---|---|
FluentWebElement |
Search.find(org.openqa.selenium.By locator,
Integer number,
Filter... filters)
Return the elements at the number position into the the lists corresponding to the cssSelector with it filters
|
FluentWebElement |
Search.find(Integer number,
Filter... filters)
Return the element at the number position in the lists corresponding to the filters
|
FluentWebElement |
Search.find(String name,
Integer number,
Filter... filters)
Return the elements at the number position into the the lists corresponding to the cssSelector with it filters
|
FluentWebElement |
Search.findFirst(org.openqa.selenium.By locator,
Filter... filters)
Return the first elements corresponding to the name and the filters
|
FluentWebElement |
Search.findFirst(Filter... filters)
Return the first element corresponding to the filters.
|
FluentWebElement |
Search.findFirst(String name,
Filter... filters)
Return the first elements corresponding to the name and the filters
|
| Modifier and Type | Method and Description |
|---|---|
FluentList<FluentWebElement> |
Search.find(org.openqa.selenium.By locator,
Filter... filters)
Central methods to find elements on the page.
|
FluentList<FluentWebElement> |
Search.find(Filter... filters)
Central methods to find elements on the page with filters.
|
FluentList<FluentWebElement> |
Search.find(String name,
Filter... filters)
Central methods to find elements on the page.
|
| Modifier and Type | Method and Description |
|---|---|
protected FluentList<? extends FluentWebElement> |
FluentWaitSupplierListMatcher.find() |
protected FluentList<FluentWebElement> |
FluentWaitLocatorSelectorMatcher.find() |
protected FluentList<FluentWebElement> |
FluentWaitElementListMatcher.find() |
protected FluentList<FluentWebElement> |
FluentWaitElementMatcher.find() |
protected FluentList<FluentWebElement> |
FluentWaitSupplierMatcher.find() |
protected abstract FluentList<? extends FluentWebElement> |
AbstractWaitElementMatcher.find()
Find the elements from configured matcher.
|
| Modifier and Type | Method and Description |
|---|---|
FluentWaitElementMatcher |
FluentWait.until(FluentWebElement element)
Return a matcher configured to wait for particular condition for given element.
|
| Modifier and Type | Method and Description |
|---|---|
FluentWaitElementListMatcher |
FluentWait.until(List<? extends FluentWebElement> elements)
Return a matcher configured to wait for particular condition for given elements.
|
FluentWaitSupplierMatcher |
FluentWait.untilElement(com.google.common.base.Supplier<? extends FluentWebElement> selector)
Return a matcher configured to wait for particular condition for elements matching then given functional supplier.
|
FluentWaitSupplierListMatcher |
FluentWait.untilElements(com.google.common.base.Supplier<? extends FluentList<? extends FluentWebElement>> selector)
Return a matcher configured to wait for particular condition for elements matching then given functional supplier.
|
| Constructor and Description |
|---|
FluentWaitElementMatcher(Search search,
FluentWait fluentWait,
FluentWebElement untilElement) |
| Constructor and Description |
|---|
FluentWaitElementListMatcher(Search search,
FluentWait fluentWait,
List<? extends FluentWebElement> untilElements) |
FluentWaitSupplierListMatcher(Search search,
FluentWait fluentWait,
com.google.common.base.Supplier<? extends FluentList<? extends FluentWebElement>> selector) |
FluentWaitSupplierMatcher(Search search,
FluentWait fluentWait,
com.google.common.base.Supplier<? extends FluentWebElement> selector) |
Copyright © 2016 FluentLenium. All Rights Reserved.