Skip to content

Latest commit

 

History

History
64 lines (41 loc) · 1.21 KB

File metadata and controls

64 lines (41 loc) · 1.21 KB

Summary

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/).

Installation

  1. Clone the repository to your local machine:
   git clone https://github.com/valentinc94/bpce_selenium_practice.git
  1. Change into the project directory:
   cd bpce_selenium_practice
  1. Create a virtual environment (optional, but recommended):
   python -m venv venv
  1. Activate the virtual environment:
  • On Windows:
   venv\Scripts\activate
  • On macOS and Linux:
   source venv/bin/activate
  1. Install the required packages:
   pip install -r requirements/base.txt

Running the Tests

To run the unit tests, make sure you are in the project directory and the virtual environment is activated.

   python -m unittest discover tests

Running the Code

To run the code, make sure you are in the project directory and the virtual environment is activated.

   python client.py

Contributing

If you find any issues or have suggestions for improvements, feel free to open an issue or create a pull request.

Happy coding!