A template to get you setup to pass a command file and run commands.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Maxim 2a42be3d26
Fixed logging
4 years ago
docs Documentation generation 4 years ago
src Fixed logging 4 years ago
.gitignore Initial commit 4 years ago
LICENSE Initial commit 4 years ago
README.md README changes 4 years ago
requirements.txt inital push 4 years ago

README.md

Selenium Automation Template

A template to get you setup to pass a command file and run commands.

Note(s)

This is designed with using Python mixins to inherit functionality from discrete classes that have discrete methods. The only "global" variables should be in the Context class.

!Important! BUILD OUT THE LOGIC FIRST AS THIS IS JUST TO GET STARTED!

Dependencies

sudo apt install python3 python-pip libgirepository1.0-dev

Setup

*** Change to the src directory. (Rename it if you want to first.)

python3 -m venv ./venv

source venv/bin/activate

pip install -r requirements.txt

python . <your command file>

... when done ...

deactivate