Wire is a python wrapper around selenium to make writing web tests easier and safer.
This framework is built for python 3.7+
Installation
Environment with python3.7 and Poetry
$ curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python3
$ poetry install
$ poetry run pytest tests/Run locally
Simple just define a browser instance
Run remote
Also simple
Install Drivers
Chrome Driver
MAC
$ brew tap homebrew/cask && brew cask install chromedriverLINUX
$ sudo ./install_chromedriver.shFirefox Driver
MAC
$ brew install geckodriverLINUX
$ sudo ./install_gecko.sh

