2
I’m trying to develop a script in Python that simply open the browser as shown on that site Selenium with Chrome, but every time I try to run the program I come across the following error:
browser = webdriver. Chrome() Attributeerror: module 'Selenium.webdriver' has no attribute 'Chrome'
Below is the complete code:
from selenium import webdriver driver = webdriver.Chrome('C:\Program
Files (x86)\Google\Chrome\Application\chrome.exe')
IDE: Pycharm.
NOTE: I already downloaded the Chromedriver and reinstalled the Selenium several times.
Thanks for the help, that was not the problem and yes it was missing to add the module of Selenium in the settings of Pycharm, must be a beginner error in Python kkkk, but thanks
– MaisUmEstudante