Pages

Page

class saunter.po.webdriver.page.Page

Top of the PO page tree

is_element_available(locator)

Synchronization method for making sure the element we’re looking for is not only on the page, but also visible – since Se will happily deal with things that aren’t visible.

Use this instead of is_element_present most of the time.

wait_for_element_not_present(locator)

Synchronization helper to wait until some element is removed from the page

Raises :ElementVisiblityTimeout
wait_for_hidden(locator)

Synchronization to deal with elements that are present, but are visibility until some action triggers their hidden-ness.

Raises :ElementVisiblityTimeout=
wait_for_text(locator, text)

Synchronization on some text being displayed in a particular element.

Raises :ElementVisiblityTimeout
wait_for_value(locator, text)

Synchronization on some value being set in a particular element.

Raises :ElementVisiblityTimeout
wait_for_visible(locator)

Synchronization to deal with elements that are present, but are disabled until some action triggers their visibility.

Raises :ElementVisiblityTimeout

Elements

Element

class saunter.po.webdriver.element.Element

Top of the PO element tree

Select

saunter.po.webdriver.select.Select

Base element class for Select fields

Text

saunter.po.webdriver.text.Text

Base element class for Text fields

Table Of Contents

Previous topic

saunter.testcase.webdriver

Next topic

saunter.generators

This Page