# Automated tests This repo contains automated tests for all squads. ## How to configure tests Check [Jak začít automatizovat testy](https://confluence.moneta.cz/pages/viewpage.action?pageId=1277377457) page. The best way to start is to * Choose the method you want to use from about (IDE, command line, default file) * Create a config file that contains: ``` environment.type=tst1 environment.from=tst1 browser=chrome ``` ### Testing application (example, IB) in Google Chrome You need following parameters to test using Google Chrome: ``` selenium.webdriver.path=c:\\Users\\\\drivers\\chromedriver.exe selenium.chromebinary.path=C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe ``` More details can be found on [Jak začít automatizovat testy](https://confluence.moneta.cz/pages/viewpage.action?pageId=1277377457) page ### Testing application (example, UFO) in MS Edge You need following parameters to test using MS Edge: ``` selenium.edge.webdriver.path=c:\\Users\\\\\drivers\\msedgedriver.exe ``` More details can be found on [Jak začít automatizovat testy](https://confluence.moneta.cz/pages/viewpage.action?pageId=1277377457) page