Skip to main content

Framework built on top of Selenium framework for easy setup and config

Project description

Web Automation Framework

This is a project designed to minimize the setup and config of selenium and actions performed on elements

To use this library, create a snippet like below and populate the actions in the run method (remove the pass keyword)

from web_automation.framework import Framework, Browser, By

class CustomClass(Framework):
    def run(self):
        pass

CustomClass(
    browser=Browser.CHROME,
    wait=10,
    headless=False,
    download_path=''
)

The Constructor accepts 4 params (only one mandatory: browser) which is applied across the automation session

  • browser: Browser - The type of browser that you want to use, based on the Browser class
  • wait: int - The wait time for an element before throwing NoSuchElementException exception, default value is 30 seconds
  • headless: bool - Boolean option to set the automation to use the browser in headless mode (runs in background and no visible browser window), default value is False
  • download-path: str - the path to store the downloaded files, default value is the system download folder

Browser Class

The Browser enum from the module will provide the target browser required to run the automation.

The supported browsers are

  • Google Chrome
  • Microsoft Edge
  • Mozilla Firefox
  • Safari

Element selection

The HTML elements in the browser can be selected using one of the below attributes

  • id
  • name
  • tag name
  • class name
  • css selector
  • xpath
  • link text
  • partial link text

These selectors are provided using the By class (Selenium Class)


SelectBy Class

There are different ways to select an option in the dropdown menu. The SelectBy enum has the below listed options to select the item in the dropdown

  • Index
  • Text
  • Value

Actions Available

The below methods are available in the Framework Class and should be used inside the run method prefixing self.

  • type(elem_type, elem_id, value, clear) - used to type the value in the element

    • elem_type: By - one of the options from By
    • elem_id: str - element ID value based on the elem_type
    • value: str - value to be typed in the component
    • clear: bool - Boolean value to clear the element before typing
  • click(elem_type, elem_id) - used to click the element

    • elem_type: By - one fo the options from By
    • elem_id: str - element ID value based on the elem_type
  • select(elem_type, elem_id, select_by, value) - used to select an options from the dropdown input

    • elem_type: By - one of the options from By
    • elem_id: str - element ID value based on the elem_type
    • select_by: SelectBy - one of the options from SelectBy
    • value: str - value for the SelectBy option type
  • deselect(elem_type, elem_id) - used to deselect a dropdown list

    • elem_type: By - one of the options from By
    • elem_id: str - element ID value based on the elem_type
  • check_if_exists(elem_type, elem_id) - used to check if the mentioned element exists in the page

    • elem_type: By - one of the options from By
    • elem_id: str - element ID value based on the elem_type
  • navigate_to(url) - used to navigate to the mentioned url

    • url: str - Target url to be navigated to
  • wait(wait_time) - wait for mentioned time

    • wait_time: int - wait for the mentioned number of seconds

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

web-automation-1.0.1.tar.gz (6.1 kB view details)

Uploaded Source

Built Distribution

web_automation-1.0.1-py3-none-any.whl (6.4 kB view details)

Uploaded Python 3

File details

Details for the file web-automation-1.0.1.tar.gz.

File metadata

  • Download URL: web-automation-1.0.1.tar.gz
  • Upload date:
  • Size: 6.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.5

File hashes

Hashes for web-automation-1.0.1.tar.gz
Algorithm Hash digest
SHA256 bb1856949a1bee377dd9d8f336e376119fbed47c59b3247b77b98c3b6bc8f4bc
MD5 a1c5cacdadb5aaea500552d5cf236055
BLAKE2b-256 1bba95641cd9e8e1f2c42e1a31e4e0b76ae7ec2e5310aaac5c6f90d904c8d0be

See more details on using hashes here.

File details

Details for the file web_automation-1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for web_automation-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 5dd9c84b10269574b02d4dd71292e9cd1e88af410dfbef4da2afca1f8a014fdb
MD5 0e18a39b172150ad8b35054914275e1e
BLAKE2b-256 bb5b9e095a5bb8aaeaaa69536e9f3f79df8af9c4661ab2e1d26408451643cbcb

See more details on using hashes here.

Supported by

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