Skip to main content

page object wrapper for selenium webdriver

Project description

Wrapper for selenium webdriver to make page objects easy:

class SomePageBlock(PageElement):
    filed = PageElement("#filed_id", timeout=10)
    button = PageElement("//path/to/element")

    def do_some_work(self, keys):
        self.field.send_keys(keys)
        self.button.click()
        ...

class SomePageObject(PageElementsContainer):
    element = SomePageBlock(".block_class")

    def __init__(self, driver):
        self.driver = driver

page = SomePageObject(get_driver('firefox'))
assert page.element.button.is_displayed()
page.element.do_some_work("bla-bla")
  • lazy element loading by request

  • automated handling of StaleElementReferenceException

  • flexible timeouts

  • automated detecting of locator type

  • smart lists of elements, automated logs and much more here.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pypo4sel.core-0.0.2.tar.gz (9.5 kB view details)

Uploaded Source

File details

Details for the file pypo4sel.core-0.0.2.tar.gz.

File metadata

  • Download URL: pypo4sel.core-0.0.2.tar.gz
  • Upload date:
  • Size: 9.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pypo4sel.core-0.0.2.tar.gz
Algorithm Hash digest
SHA256 8614f760030e462441f4218c01a78926228b6bad09a4074a316a31c31ca47a75
MD5 596a53c204b212a5d81c0e69b2c00904
BLAKE2b-256 87d18e504ea92fe42700f118ed30cfc85369f7d0c33f57df30099ca386b8f039

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page