A very simple example of how to run Selenium tests with a Bottle application using LiveServerTestCase. This example assumes you have Firefox installed and is capable of running selenium tests.
Clone the repository:
$ git clone https://github.com/jerrykan/bottle-selenium.git
Set up the virtual environment:
$ cd bottle-selenium $ virtualenv venv $ . venv/bin/activate
Install the dependencies:
$ pip install -r requirements.txt
Run the selenium tests:
$ python run_tests.py