Browserstack Automate integrates Browserstack and Behave to allow developers to automate their selinium tests across any number of devices. Simply define your Behave tests and the devices you wish to test against. The tests will be sent to Browserstack and return runner reports, screenshots and any errors reports.
Flask starter project...
- Activate a virtualenv
- Install the requirements
Update project/server/config.py, to either:
app_settings = 'project.server.config.DevelopmentConfig'
or
app_settings = 'project.server.config.ProductionConfig'
$ python manage.py install
$ python manage.py runserver
So access the application at the address http://localhost:5000/
Want to specify a different port?
$ python manage.py runserver -h 0.0.0.0 -p 8080
Without coverage:
$ python manage.py test