
Hello Everyone, In this tutorial, we are going to learn Python 3 Script to Download Latest Selenium Chrome Driver Executable Remotely in Command Line.
It is very easy and simple to follow these steps with me. You need Python and PyCharm IDE on your PC (or you can use one of your IDEs).
Python 3 Script to Download Latest Selenium Chrome Driver Executable Remotely in Command Line
import requests
import wget
import zipfile
import os
# get the latest chrome driver version number
url = 'https://chromedriver.storage.googleapis.com/LATEST_RELEASE'
response = requests.get(url)
version_number = response.text
# build the donwload url
download_url = "https://chromedriver.storage.googleapis.com/" + version_number +"/chromedriver_win32.zip"
# download the zip file using the url built above
latest_driver_zip = wget.download(download_url,'chromedriver.zip')
# extract the zip file
with zipfile.ZipFile(latest_driver_zip, 'r') as zip_ref:
zip_ref.extractall() # you can specify the destination folder path here
# delete the zip file downloaded above
os.remove(latest_driver_zip)
Conclusion
Here we clearly understood the Python 3 Script to Download Latest Selenium Chrome Driver Executable Remotely in Command Line. If you want to learn salesforce and Double Verify. Please check the below links.
Related Posts
- Python 3 Script to Run Javascript Code Using js2py
- How to Download Instagram Profile Picture with Python 3 Instaloader Script?
- Python 3 Truecaller API Web Scraping
Tech Posts