I'm trying to develop a script in Python that simply opens the browser as shown in this Selenium with Chrome , but every time I try to run the program I come across the following error:
navigator = webdriver.Chrome () AttributeError: module 'selenium.webdriver' has no 'Chrome' attribute
The full code is below:
from selenium import webdriver driver = webdriver.Chrome('C:\Program
Files (x86)\Google\Chrome\Application\chrome.exe')
IDE: PyCharm.
NOTE: I've already downloaded ChromeDriver and reinstalled Selenium several times.