The web automation framework inspired from behave and robot framework. It is a tool to minimize your dependencies on XPATHs for writing end to end automation.
The tool follows a yml scripting which you will find below.
> pip install wtrobot
> git clone <this repo>
> cd <repo directory>
> python setup.py install
NOTE
- Selenium_drivers folders have your selenium webdrivers geckodrivers(for firefox) and chromedrivers(for chrome and chromium)
- If script fails due to drivers issue, you need to find appropriate selenium webdriver according to your browser version
- Unzip or untar the executable and place in selenium_drivers dir.
- Write all your test cases into test.yaml and execute
> wtrobot
or
python3 -m wtrobot
NOTE
- On initial run script will ask you for few configuration question and create config.json file.
-
Write your WTRobot test cases in test.yaml files
-
Scenario and name are just detailed text description about your test case scenario and steps, they are useful for detailed logging
-
There are only three important section to be considered while writing this script file
- action: what to perform (e.g. click, input and etc)
- target: on what to perform (e.g. Text widget on web page, xpath of widget and etc)
- value: with what data (e.g. if an input field then what value to input)
This application is licensed under the MIT License. Please read file LICENSE for details.
Please read file CONTRIBUTORS for list of contributors.