TODO
pip install -U git+https://github.com/2gis/contesto.git#egg=contesto
- download selenium-server-standalone
- run it
java -jar selenium-server-standalone-2.45.0.jar
- run test
from contesto import ContestoTestCase
class TestExample(ContestoTestCase):
def test_example(self):
self.driver.get("http://google.com")
In case you need some customization, for example, you prefer to run selenium server on port 9000
and you need to run tests using chrome
- create
config.ini
[Selenium]
host: localhost
port: 9000
browserName: chrome
- add
config.ini
in test
from contesto import ContestoTestCase, config
config.add_config_file("config.ini")
class TestExample(ContestoTestCase):
def test_example(self):
self.driver.get("http://google.com")
More information