Package | Description |
---|---|
com.github.mkolisnyk.sirius.client.ui |
Common package for all UI related abstractions and supporting classes.
|
com.github.mkolisnyk.sirius.client.ui.controls |
Common package for classes representing page controls.
|
com.github.mkolisnyk.sirius.client.ui.predicates |
Common storage for all core predicates.
|
Modifier and Type | Class and Description |
---|---|
class |
AlertPage
Common page class for alert messages.
|
Modifier and Type | Method and Description |
---|---|
static <T extends Page> |
PageFactory.init(org.openqa.selenium.WebDriver driver,
java.lang.Class<?> pageClass)
Major method which initialises page object instance based on WebDriver and page class
provided.
|
<T extends Page> |
Page.section(java.lang.String name,
java.lang.Class<T> pageType)
Looks for nested page object by specific name.
|
Modifier and Type | Method and Description |
---|---|
Page |
AlertPage.accept()
Simply presses OK on available alert dialog.
|
Page |
AlertPage.dismiss()
Presses Cancel on confirmation dialog.
|
static Page |
Page.forName(java.lang.String name)
Retrieves page object by it's logical name specified as the value of
Alias
annotation. |
static Page |
Page.forName(java.lang.String name,
java.lang.String pagePackage)
Retrieves page object by it's logical name specified as the value of
Alias
annotation. |
static Page |
Page.getCurrent()
Gets the current page for current thread instance.
|
static Page |
Page.getCurrentFromList(java.lang.Class<? extends Page>[] pageClasses,
int tries)
Checks multiple page classes in order to identify which of the classes proposed
fit the current page.
|
static Page |
Page.getCurrentFromList(java.lang.Class<? extends Page>[] pageClasses,
int tries,
boolean useCache)
Checks multiple page classes in order to identify which of the classes proposed
fit the current page.
|
Page |
Page.navigate()
Performs actions to navigate to current page.
|
Page |
AlertPage.prompt(java.lang.String value)
Enters value into prompt dialog and accepts it.
|
Page |
Page.section(java.lang.String name)
Looks for nested page object by specific name.
|
Page |
Page.switchTo()
Method responsible for switching to frame/window represented by
current page object.
|
Page |
Page.verify(Operation<java.lang.Boolean,Page> predicate)
Verifies that page has some specific state and asserts the error if condition is not met.
|
Modifier and Type | Method and Description |
---|---|
static void |
Page.setCurrent(Page newPage)
Sets the current page for current thread instance.
|
Modifier and Type | Method and Description |
---|---|
boolean |
Page.is(Operation<java.lang.Boolean,Page> predicate)
Checks some state of page depending on predicate specified.
|
Page |
Page.verify(Operation<java.lang.Boolean,Page> predicate)
Verifies that page has some specific state and asserts the error if condition is not met.
|
Constructor and Description |
---|
AlertPage(org.openqa.selenium.WebDriver driverValue,
Page parentPage)
Alert page constructor.
|
Modifier and Type | Method and Description |
---|---|
Page |
Control.getParent()
Gets reference to the parent
Page object. |
Constructor and Description |
---|
CheckBox(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.
|
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.
|
Edit(Page parentValue,
org.openqa.selenium.By locatorValue)
Default constructor.
|
Editable(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.
|
RadioButton(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.
|
SelectList(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.
|
TableView(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 |
---|---|
static <T extends Page> |
Actions.waitFor(java.lang.Class<T> pageClass)
Waits for specific page to appear.
|
Modifier and Type | Method and Description |
---|---|
static Operation<AlertPage,Page> |
Getters.alert()
Gets alert page instance.
|
static Operation<java.lang.Boolean,Page> |
States.current()
Overloaded version of
States.current(int) which waits for page during default timeout. |
static Operation<java.lang.Boolean,Page> |
States.current(int timeout)
Checks if the actual page observed from application under test corresponds
to current page class instance.
|
static Operation<Page,Control> |
Getters.parent()
Predicate for retrieving parent object of the control.
|
static Operation<java.lang.Boolean,Page> |
States.textPresent(java.lang.String text)
Checks if page contains specified text.
|