Page Objects for Python
Project description
Page Objects are a testing pattern for websites. Page Objects model a page on your site to provide accessors and methods for interacting with this page, both to reduce boilerplate and provide a single place for element locators.
This project is an implementation of this pattern for Python using Selenium webdriver. It is agnostic to test harnesses and designed to help you build up libraries of code to test your sites.
Documentation
Quick Example
>>> from page_objects import PageObject, PageElement >>> from selenium import webdriver >>> >>> class LoginPage(PageObject): username = PageElement(id_='username') password = PageElement(name='password') login = PageElement(css='input[type="submit"]') >>> >>> driver = webdriver.PhantomJS() >>> driver.root_uri = "http://example.com" >>> page = LoginPage(driver) >>> page.get("/login") >>> page.username = 'secret' >>> page.password = 'squirrel' >>> assert page.username.text == 'secret' >>> page.login.click()
Installation
$ pip install page_objects
Project History
This was originally part of the pkglib project at http://github.com/ahlmss/pkglib, it has been forked to retain history.
Release History
1.1.0 (2014-10-15)
Added feature: PageElements can now be contructed with context
Deprecated page_element and mutli_page_element factory methods
1.0.1 (2014-09-30)
Added PageObject.get(uri) method, based off of the page’s root_uri attribute.
1.0.0 (2014-09-29)
Initial export from http://github.com/ahlmss/pkglib
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file page-objects-1.1.0.tar.gz
.
File metadata
- Download URL: page-objects-1.1.0.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 885912f1d7a47354107a4132f8dfc350f450621ba372e221762a33288880a134 |
|
MD5 | 57c00f4e0ceed99fa765f99c6533ae0f |
|
BLAKE2b-256 | 6a4c93708fae588a03b2f8a9672d15f32322e5363b9cef0c256e88525ac2f68d |