In this series of exercises we're going to run several automated tests against web application.
To be able to run the exercises the following items need to be installed:
- Python (version 3.8 or newer): https://www.python.org/downloads/
- Remember to add Python folder to PATH environment variable.
- Pip for Python 3
- Windows: https://www.howtogeek.com/197947/how-to-install-python-on-windows/
- Linux:
sudo apt-get install python3-pip && pip3 install --upgrade pip
- macOS:
brew install python
pip is already included
- Node.js (version 18 or newer): https://nodejs.org/en/download/
- Required for Browser library
- In order to make installing with pip easier, use python venv
- Short instruction to venv use
python -m venv <choose_a_folder_name> source <chosen_folder_name>/bin/activate # linux, mac # or <chosen_folder_name>\Scripts\activate.bat # windows (activate.ps1 on powershell)
- Short instruction to venv use
After you have installed the requirements check the Getting started exercise and proceed with the exercises.