Showing posts with label selenium. Show all posts
Showing posts with label selenium. Show all posts

Saturday, January 18, 2020

Python selenium installation

Make sure you have pip installed. Generally it comes with the package already.

Now install selenium
C:\Python34\Scripts\pip.exe install -U selenium
Later you have to download the browser driver (either for firefox or chrome etc) - just google it to get the location. The downloaded stuffs path needs to be used in python code.

Rest of the other related stuffs are as below -- used for data scraping
pip install beautifulsoup4

pip install requests