Demonstration of how Robot Framework works through automated tests created for a web application.
Robot Framework is implemented with Python, so you need to have Python installed. On Windows machines, make sure to add Python to PATH during installation.
Installing Robot Framework with pip is simple:
pip install robotframework
We need to install the Robot Framework Libraries that we plan to use in our tests.
Browser Library requires NodeJs.
pip install robotframework-browser
Install the node dependencies:
rfbrowser init
- if rfbrowser is not found, try:
python -m Browser.entry init
We need to install a code editor to write Robot Framework scripts. We recommend using Visual Studio Code.