This Python script employs Selenium to automate a sequence of steps for searching a bank branch and clicking on it on Banque Populaire's website (https://www.banquepopulaire.fr/).
- Clone the repository to your local machine:
git clone https://github.com/valentinc94/bpce_selenium_practice.git- Change into the project directory:
cd bpce_selenium_practice- Create a virtual environment (optional, but recommended):
python -m venv venv- Activate the virtual environment:
- On Windows:
venv\Scripts\activate- On macOS and Linux:
source venv/bin/activate- Install the required packages:
pip install -r requirements/base.txtTo run the unit tests, make sure you are in the project directory and the virtual environment is activated.
python -m unittest discover testsTo run the code, make sure you are in the project directory and the virtual environment is activated.
python client.pyIf you find any issues or have suggestions for improvements, feel free to open an issue or create a pull request.
Happy coding!