

150 with binary path /Applications/Google Chrome. : Message: session not created: This version of ChromeDriver only supports Chrome version 89Ĭurrent browser version is. If you meet an error message like below, it means the google chrome driver version does not match the google chrome web browser version, you should download the google chrome driver which version matches your installed google chrome web browser.The WebDriver language APIs provides ways to pass capabilities to ChromeDriver. This page documents all ChromeDriver supported capabilities and how to use them. You can also add the google ChromeDriver executable file path in the OS PATH environment variable value, then you can run google chrome web browser like below. ChromeDriver - WebDriver for Chrome - Capabilities & ChromeOptions Capabilities & ChromeOptions Capabilities are options that you can use to customize and configure a ChromeDriver session.> browser = webdriver.Chrome(executable_path = '/Users/songzhao/Downloads/chromedriver') # The executable_path is the google chromedriver executable file saved path. If you see a blank google chrome web browser, that means the google ChromeDriver has been installed successfully, you can use it in your python selenium script. Verify the google ChromeDriver installation by executing the below python script in the python interaction console.Location: /Library/Frameworks/amework/Versions/3.7/lib/python3.7/site-packages (base) songs-MacBook-Pro:~ songzhao$ pip show selenium Requirement already satisfied: urllib3 in /Library/Frameworks/amework/Versions/3.7/lib/python3.7/site-packages (from selenium) (1.25.3) (base) songs-MacBook-Pro:~ songzhao$ pip install seleniumĭownloading 圓-none-any.whl (904 kB) Make sure the python selenium package has been installed on your os with the command pip show selenium, if the python selenium package is not installed then run the command pip install selenium to install it.


