Skip to main content

Extension for page factory.

Project description

An extension for PageFactory class (selenium-page-factory)

Main class:

ExtendedPageFactory(AssertPageMixin, NavLocatorsMixin, FormButtonsMixin, PageFactory)

Mixins:

AssertPageMixin (title) -> Checks if the current page has the same title as given.

NavLocatorsMixin (nav_locators) -> Provides a class attribute to be added to PageFactory attribute locators. This is a convenient way to add common navbar locators to several Page classes.

FormButtonsMixin (form_buttons) -> Provides a list of form inputs such as save (value='Save'), save_and_new ( value='Save & New'), delete (value='Delete') etc. as a class attribute (form_buttons=[save, save_and_new, delete]). If a tuple is given the second value indicates the locator. For example if the cancel button is in reality a link: <a href="">Cancel</a>, add (cancel, "LINK_TEXT") to form_buttons.

This class provides click methods for each input or link according to form_buttons list: click_save(), click_save_and_new(), click_delete() and click_cancel() would be the click methods in our example case. Other methods with scrolling down before clicking a button (scroll_down_and_click_...) are also available for each form button. click_ and scroll_down_and_click_ methods accept a time argument for setting time.sleep before clicking. For example scroll_down_and_click_save(time=3) does following actions: 1. maximizing the window 2. scrolling down to bottom of the window 3. sleep for 3 seconds (important if scrolling down to bottom takes a while ...)

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

extended-selenium-page-factory-0.4b0.tar.gz (2.9 kB view hashes)

Uploaded Source

Built Distribution

Supported by

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