Skip to content

Latest commit

 

History

History
26 lines (25 loc) · 1.4 KB

README.md

File metadata and controls

26 lines (25 loc) · 1.4 KB

Automated-Season-shopper-using-selenium

With Pylint Rating 10/10


This Automated season shopper project takes you through complete shopping from opening the window to the payment with the help of selenium and python.
Key points according to which This project works
  • It uses the test website: https://weathershopper.pythonanywhere.com/
  • At first it choosed the temperature according to which it will go to the season whether it needs Moisturizers or sunscreens
  • At sunscreens it will take least priced SPF-50 and SPF-30 products
  • At Moisturizers it will take least priced ALOE and ALMOND products
  • It will go to payment cart and fills dummy account details and clicks over pay which will endup with a page showing payment successfull

Tips to use Install selenium into your system
pip3 install selenium
provide executable permission to driver_installer
chmod -x driver_installer.sh
execute the driver_installer
./driver_installer.sh
If you have firefox browser then it's ok, if you have any other browser like chrome just change the line "browser = webdriver.Firefox()" in app.py with your browses compati ble line like for chrome its
"browser = webdriver.Chrome()"
execute the app.py
python3 app.py


Thank you