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 theBrowser
classwait: int
- The wait time for an element before throwingNoSuchElementException
exception, default value is30
secondsheadless: bool
- Boolean option to set the automation to use the browser in headless mode (runs in background and no visible browser window), default value isFalse
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 thevalue
in the elementelem_type: By
- one of the options fromBy
elem_id: str
- element ID value based on theelem_type
value: str
- value to be typed in the componentclear: bool
- Boolean value to clear the element before typing
-
click(elem_type, elem_id)
- used to click the elementelem_type: By
- one fo the options fromBy
elem_id: str
- element ID value based on theelem_type
-
select(elem_type, elem_id, select_by, value)
- used to select an options from the dropdown inputelem_type: By
- one of the options fromBy
elem_id: str
- element ID value based on theelem_type
select_by: SelectBy
- one of the options fromSelectBy
value: str
- value for theSelectBy
option type
-
deselect(elem_type, elem_id)
- used to deselect a dropdown listelem_type: By
- one of the options fromBy
elem_id: str
- element ID value based on theelem_type
-
check_if_exists(elem_type, elem_id)
- used to check if the mentioned element exists in the pageelem_type: By
- one of the options fromBy
elem_id: str
- element ID value based on theelem_type
-
navigate_to(url)
- used to navigate to the mentioned urlurl: str
- Target url to be navigated to
-
wait(wait_time)
- wait for mentioned timewait_time: int
- wait for the mentioned number of seconds
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
Built Distribution
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
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb1856949a1bee377dd9d8f336e376119fbed47c59b3247b77b98c3b6bc8f4bc |
|
MD5 | a1c5cacdadb5aaea500552d5cf236055 |
|
BLAKE2b-256 | 1bba95641cd9e8e1f2c42e1a31e4e0b76ae7ec2e5310aaac5c6f90d904c8d0be |
File details
Details for the file web_automation-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: web_automation-1.0.1-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5dd9c84b10269574b02d4dd71292e9cd1e88af410dfbef4da2afca1f8a014fdb |
|
MD5 | 0e18a39b172150ad8b35054914275e1e |
|
BLAKE2b-256 | bb5b9e095a5bb8aaeaaa69536e9f3f79df8af9c4661ab2e1d26408451643cbcb |