This is about testing OrangeHRM website with selenium library with this list of test cases
- Login and logout
- Apply leave
- Cancel leave
- Update personal details
- Update contact details
- Add job title
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
What things you need to install the software and how to install them.
- First things first, you should install the Python first, you can download here, don't forget to add it into your ENV Var on your OS
- To verify your already set it up correctly, You need to run this snippet on your terminal
python -V
if on your terminal give a feedback of the version that you're instal, that is a good sign. - Next install PIP, see on this article here
- After that, Install Robot Framework through PIP, type this snippet on your terminal
pip install robotframework
, to check it the framework already installed, type this snippetrobot --version
- Then because we're using External Library (Selenium Library), then we need to install that library too.
- Type this snippet to install Selenium
pip install --upgrade robotframework-seleniumlibrary
- Don't forget to clone this repo
- Open a terminal inside the repo
- Run this snippet to run the test
robot -d Output Tests/TestCase.robot
- RobotFramework - Automation Framework
- Python - Programming Language
- Selenium - Library Automation