I have created a project on Pycharm, added the selenium to folder to my new project called 'selenium' and added the chromedriver to the folder.
I use this to test it: from selenium import webdriver
browser = webdriver.chrome() browser.get('http://seleniumhq.org/')
it doesnt work and shows me this: /Users/andres/PycharmProjects/selenium/selenium/bin/python /Users/andres/PycharmProjects/selenium/TEST.py Traceback (most recent call last): File "/Users/andres/PycharmProjects/selenium/TEST.py", line 3, in browser = webdriver.chrome() TypeError: 'module' object is not callable
Process finished with exit code 1
what can I do?