Constructor and Description |
---|
Control(Page parentValue,
org.openqa.selenium.By locatorValue)
Default constructor which binds page the control belongs to and the locator to
find the element on page.
|
Modifier and Type | Method and Description |
---|---|
void |
addSubItems(SubItem[] items)
Adds sub-items assigned using
SubItem annotation. |
org.openqa.selenium.WebElement |
element()
Gets direct reference to the WebElement instance for current control object.
|
org.openqa.selenium.WebElement |
element(int index)
Gets direct reference to the WebElement instance for current control object.
|
<T> T |
get(Operation<T,Control> predicate)
.
|
org.openqa.selenium.WebDriver |
getDriver()
Gets the direct reference to the WebDriver object.
|
java.lang.String |
getFormat()
Gets the string which can be used in custom controls when the data is to
be retrieved based on some specific format (e.g.
|
java.lang.String |
getItemLocatorText()
Gets string representation of item locator.
|
org.openqa.selenium.By |
getLocator()
Gets actual locator to be used for element location on page.
|
java.lang.String |
getLocatorText()
Gets the string representation of the locator.
|
Page |
getParent()
Gets reference to the parent
Page object. |
java.awt.Rectangle |
getRect()
Gets rectangular dimensions of current control.
|
ScrollTo |
getScrollDirection()
Gets the direction of scrolling.
|
java.lang.String |
getScrollTo()
Gets text to scroll to in case element isn't immediately available on page.
|
java.lang.String |
getText()
Gets element text.
|
java.lang.String |
getValue()
Gets element value.
|
boolean |
is(Operation<java.lang.Boolean,Control> predicate)
Checks some state of control depending on predicate specified.
|
boolean |
isExcludeFromSearch()
Defines whether current control is supposed to be excluded from search while
using
Page#isCurrent(long) method. |
<T> T |
perform(Operation<T,Control> predicate)
.
|
void |
scrollTo()
Scrolls screen to current element.
|
void |
setExcludeFromSearch(boolean excludeFromSearchValue)
Sets the state whether current control is supposed to be excluded from search while
using
Page#isCurrent(long) method. |
void |
setFormat(java.lang.String formatValue)
Sets the string which can be used in custom controls when the data is to
be retrieved based on some specific format (e.g.
|
void |
setItemLocatorText(java.lang.String subItemLocatorText)
Sets item locator value.
|
void |
setScrollDirection(ScrollTo scrollDirectionValue)
Sets the direction of scrolling.
|
void |
setScrollTo(java.lang.String scrollToValue)
Sets text to scroll to in case element isn't immediately available on page.
|
Control |
verify(Operation<java.lang.Boolean,Control> predicate)
Verifies that field has some specific state and asserts the error if condition is not met.
|
boolean |
waitUntil(org.openqa.selenium.support.ui.ExpectedCondition<?> condition,
long timeout)
Common method for various actions waiting for some element event to happen.
|
public Control(Page parentValue, org.openqa.selenium.By locatorValue)
parentValue
- the instance of the page class containing current control.locatorValue
- the string used to locate current control.public org.openqa.selenium.WebDriver getDriver()
public Page getParent()
Page
object.public org.openqa.selenium.By getLocator()
public java.lang.String getLocatorText()
public java.lang.String getItemLocatorText()
public void setItemLocatorText(java.lang.String subItemLocatorText)
subItemLocatorText
- item locator string value.public java.lang.String getScrollTo()
public void setScrollTo(java.lang.String scrollToValue)
scrollToValue
- text to scroll to.public ScrollTo getScrollDirection()
public void setScrollDirection(ScrollTo scrollDirectionValue)
scrollDirectionValue
- direction of scrolling.ScrollTo
public java.lang.String getFormat()
public void setFormat(java.lang.String formatValue)
formatValue
- format string.public boolean isExcludeFromSearch()
Page#isCurrent(long)
method.public void setExcludeFromSearch(boolean excludeFromSearchValue)
Page#isCurrent(long)
method.excludeFromSearchValue
- exclude from search flag.public void addSubItems(SubItem[] items)
SubItem
annotation.items
- sub-items to add.public org.openqa.selenium.WebElement element()
public org.openqa.selenium.WebElement element(int index)
element()
, this method is applicable when multiple elements
can match the same locator. In this case the index is used to define which element
from the array of possible options should be taken.index
- element index.public boolean waitUntil(org.openqa.selenium.support.ui.ExpectedCondition<?> condition, long timeout)
condition
- the expected condition predicate.timeout
- the time limit to wait for event to happen.public <T> T perform(Operation<T,Control> predicate)
T
- .predicate
- .public <T> T get(Operation<T,Control> predicate)
T
- .predicate
- .public boolean is(Operation<java.lang.Boolean,Control> predicate)
predicate
- Operation
expression returning boolean state value.public Control verify(Operation<java.lang.Boolean,Control> predicate)
predicate
- Operation
expression returning boolean state value.public java.lang.String getText()
public java.lang.String getValue()
public java.awt.Rectangle getRect()
public void scrollTo()
Scrolls screen to current element.
NOTE: applicable for Android only.