| Modifier and Type | Method and Description |
|---|---|
default <T extends IElement> |
findChildElement(org.openqa.selenium.By childLoc,
Class<T> clazz)
Find an element in the parent element with DISPLAYED state
|
default <T extends IElement> |
findChildElement(org.openqa.selenium.By childLoc,
Class<T> clazz,
ElementState state)
Find an element in the parent element
|
default <T extends IElement> |
findChildElement(org.openqa.selenium.By childLoc,
IElementSupplier<T> supplier)
Find an element in the parent element with DISPLAYED state
|
default <T extends IElement> |
findChildElement(org.openqa.selenium.By childLoc,
IElementSupplier<T> supplier,
ElementState state)
Finds an element in the parent element
|
default <T extends IElement> |
findChildElement(org.openqa.selenium.By childLoc,
String name,
Class<T> clazz)
Find an element in the parent element with DISPLAYED state
|
<T extends IElement> |
findChildElement(org.openqa.selenium.By childLoc,
String name,
Class<T> clazz,
ElementState state)
Find an element in the parent element
|
default <T extends IElement> |
findChildElement(org.openqa.selenium.By childLoc,
String name,
IElementSupplier<T> supplier)
Find an element in the parent element with DISPLAYED state
|
<T extends IElement> |
findChildElement(org.openqa.selenium.By childLoc,
String name,
IElementSupplier<T> supplier,
ElementState state)
Finds an element in the parent element
|
default <T extends IElement> |
findChildElements(org.openqa.selenium.By childLoc,
Class<T> clazz)
Finds displayed child elements by their locator relative to parent element.
|
default <T extends IElement> |
findChildElements(org.openqa.selenium.By childLoc,
Class<T> clazz,
ElementsCount count)
Finds displayed child elements by their locator relative to parent element.
|
default <T extends IElement> |
findChildElements(org.openqa.selenium.By childLoc,
Class<T> clazz,
ElementState state)
Finds child elements by their locator relative to parent element.
|
default <T extends IElement> |
findChildElements(org.openqa.selenium.By childLoc,
Class<T> clazz,
ElementState state,
ElementsCount count)
Finds child elements by their locator relative to parent element.
|
default <T extends IElement> |
findChildElements(org.openqa.selenium.By childLoc,
IElementSupplier<T> supplier)
Finds displayed child elements by their locator relative to parent element.
|
default <T extends IElement> |
findChildElements(org.openqa.selenium.By childLoc,
IElementSupplier<T> supplier,
ElementsCount count)
Finds displayed child elements by their locator relative to parent element.
|
default <T extends IElement> |
findChildElements(org.openqa.selenium.By childLoc,
IElementSupplier<T> supplier,
ElementState state)
Finds child elements by their locator relative to parent element.
|
default <T extends IElement> |
findChildElements(org.openqa.selenium.By childLoc,
IElementSupplier<T> supplier,
ElementState state,
ElementsCount count)
Finds child elements by their locator relative to parent element.
|
default <T extends IElement> |
findChildElements(org.openqa.selenium.By childLoc,
String name,
Class<T> clazz)
Finds displayed child elements by their locator relative to parent element.
|
default <T extends IElement> |
findChildElements(org.openqa.selenium.By childLoc,
String name,
Class<T> clazz,
ElementsCount count)
Finds displayed child elements by their locator relative to parent element.
|
default <T extends IElement> |
findChildElements(org.openqa.selenium.By childLoc,
String name,
Class<T> clazz,
ElementState state)
Finds child elements by their locator relative to parent element.
|
<T extends IElement> |
findChildElements(org.openqa.selenium.By childLoc,
String name,
Class<T> clazz,
ElementState state,
ElementsCount count)
Finds child elements by their locator relative to parent element.
|
default <T extends IElement> |
findChildElements(org.openqa.selenium.By childLoc,
String name,
IElementSupplier<T> supplier)
Finds displayed child elements by their locator relative to parent element.
|
default <T extends IElement> |
findChildElements(org.openqa.selenium.By childLoc,
String name,
IElementSupplier<T> supplier,
ElementsCount count)
Finds displayed child elements by their locator relative to parent element.
|
default <T extends IElement> |
findChildElements(org.openqa.selenium.By childLoc,
String name,
IElementSupplier<T> supplier,
ElementState state)
Finds child elements by their locator relative to parent element.
|
<T extends IElement> |
findChildElements(org.openqa.selenium.By childLoc,
String name,
IElementSupplier<T> supplier,
ElementState state,
ElementsCount count)
Finds child elements by their locator relative to parent element.
|
<T extends IElement> T findChildElement(org.openqa.selenium.By childLoc, String name, Class<T> clazz, ElementState state)
T - the type of the element to be obtainedchildLoc - child element locatorname - output name in logsclazz - class or interface of the element to be obtainedstate - visibility state of target elementdefault <T extends IElement> T findChildElement(org.openqa.selenium.By childLoc, String name, Class<T> clazz)
T - the type of the element to be obtainedchildLoc - child element locatorname - output name in logsclazz - class or interface of the element to be obtaineddefault <T extends IElement> T findChildElement(org.openqa.selenium.By childLoc, Class<T> clazz, ElementState state)
T - the type of the element to be obtainedchildLoc - child element locatorclazz - class or interface of the element to be obtainedstate - visibility state of target elementdefault <T extends IElement> T findChildElement(org.openqa.selenium.By childLoc, Class<T> clazz)
T - the type of the element to be obtainedchildLoc - child element locatorclazz - class or interface of the element to be obtained<T extends IElement> T findChildElement(org.openqa.selenium.By childLoc, String name, IElementSupplier<T> supplier, ElementState state)
T - the type of the element to be obtainedchildLoc - Child element locatorname - output name in logssupplier - required element's supplierstate - visibility state of target elementdefault <T extends IElement> T findChildElement(org.openqa.selenium.By childLoc, String name, IElementSupplier<T> supplier)
T - the type of the element to be obtainedchildLoc - child element locatorname - output name in logssupplier - required element's supplierdefault <T extends IElement> T findChildElement(org.openqa.selenium.By childLoc, IElementSupplier<T> supplier, ElementState state)
T - the type of the element to be obtainedchildLoc - child element locatorsupplier - required element's supplierstate - visibility state of target elementdefault <T extends IElement> T findChildElement(org.openqa.selenium.By childLoc, IElementSupplier<T> supplier)
T - the type of the element to be obtainedchildLoc - child element locatorsupplier - required element's supplierdefault <T extends IElement> List<T> findChildElements(org.openqa.selenium.By childLoc, Class<T> clazz)
childLoc - Locator of child elements relative to its parent.clazz - Class or interface of the elements to be obtained.default <T extends IElement> List<T> findChildElements(org.openqa.selenium.By childLoc, Class<T> clazz, ElementsCount count)
childLoc - Locator of child elements relative to its parent.clazz - Class or interface of the elements to be obtained.count - Expected number of elements that have to be found (zero, more then zero, any).default <T extends IElement> List<T> findChildElements(org.openqa.selenium.By childLoc, Class<T> clazz, ElementState state)
childLoc - Locator of child elements relative to its parent.clazz - Class or interface of the elements to be obtained.state - Visibility state of child elements.default <T extends IElement> List<T> findChildElements(org.openqa.selenium.By childLoc, Class<T> clazz, ElementState state, ElementsCount count)
childLoc - Locator of child elements relative to its parent.clazz - Class or interface of the elements to be obtained.state - Visibility state of child elements.count - Expected number of elements that have to be found (zero, more then zero, any).default <T extends IElement> List<T> findChildElements(org.openqa.selenium.By childLoc, String name, Class<T> clazz)
childLoc - Locator of child elements relative to its parent.name - Child elements name.clazz - Class or interface of the elements to be obtained.default <T extends IElement> List<T> findChildElements(org.openqa.selenium.By childLoc, String name, Class<T> clazz, ElementsCount count)
childLoc - Locator of child elements relative to its parent.name - Child elements name.clazz - Class or interface of the elements to be obtained.count - Expected number of elements that have to be found (zero, more then zero, any).default <T extends IElement> List<T> findChildElements(org.openqa.selenium.By childLoc, String name, Class<T> clazz, ElementState state)
childLoc - Locator of child elements relative to its parent.name - Child elements name.clazz - Class or interface of the elements to be obtained.state - Visibility state of child elements.<T extends IElement> List<T> findChildElements(org.openqa.selenium.By childLoc, String name, Class<T> clazz, ElementState state, ElementsCount count)
T - Type of the target elements.childLoc - Locator of child elements relative to its parent.name - Child elements name.clazz - Class or interface of the elements to be obtained.state - Visibility state of target elements.count - Expected number of elements that have to be found (zero, more then zero, any).default <T extends IElement> List<T> findChildElements(org.openqa.selenium.By childLoc, IElementSupplier<T> supplier)
childLoc - Locator of child elements relative to its parent.supplier - Required elements' supplier.default <T extends IElement> List<T> findChildElements(org.openqa.selenium.By childLoc, IElementSupplier<T> supplier, ElementsCount count)
childLoc - Locator of child elements relative to its parent.supplier - Required elements' supplier.count - Expected number of elements that have to be found (zero, more then zero, any).default <T extends IElement> List<T> findChildElements(org.openqa.selenium.By childLoc, IElementSupplier<T> supplier, ElementState state)
childLoc - Locator of child elements relative to its parent.supplier - Required elements' supplier.state - Visibility state of child elements.default <T extends IElement> List<T> findChildElements(org.openqa.selenium.By childLoc, IElementSupplier<T> supplier, ElementState state, ElementsCount count)
childLoc - Locator of child elements relative to its parent.supplier - Required elements' supplier.state - Visibility state of child elements.count - Expected number of elements that have to be found (zero, more then zero, any).default <T extends IElement> List<T> findChildElements(org.openqa.selenium.By childLoc, String name, IElementSupplier<T> supplier)
childLoc - Locator of child elements relative to its parent.name - Child elements name.supplier - Required elements' supplier.default <T extends IElement> List<T> findChildElements(org.openqa.selenium.By childLoc, String name, IElementSupplier<T> supplier, ElementsCount count)
childLoc - Locator of child elements relative to its parent.name - Child elements name.supplier - Required elements' supplier.count - Expected number of elements that have to be found (zero, more then zero, any).default <T extends IElement> List<T> findChildElements(org.openqa.selenium.By childLoc, String name, IElementSupplier<T> supplier, ElementState state)
childLoc - Locator of child elements relative to its parent.name - Child elements name.supplier - Required elements' supplier.state - Visibility state of child elements.<T extends IElement> List<T> findChildElements(org.openqa.selenium.By childLoc, String name, IElementSupplier<T> supplier, ElementState state, ElementsCount count)
T - Type of the target elements.childLoc - Locator of child elements relative to its parent.name - Child elements name.supplier - Required elements' supplier.state - Visibility state of child elements.Copyright © 2020. All rights reserved.