A template to get you setup to pass a command file and run commands.
Go to file Use this template
Maxim 2a42be3d26
Fixed logging
2020-05-22 01:32:34 -05:00
docs Documentation generation 2020-04-11 15:39:42 -05:00
src Fixed logging 2020-05-22 01:32:34 -05:00
.gitignore Initial commit 2020-04-10 17:40:41 -05:00
LICENSE Initial commit 2020-04-10 17:40:41 -05:00
README.md README changes 2020-04-10 17:45:18 -05:00
requirements.txt inital push 2020-04-10 17:41:42 -05:00

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