sorry for the silly question, but I'm trying to run a very simple python script using selenium. Heres the script I have,
from selenium
import webdriver
driver = webdriver.Chrome(executable_path = "/usr/local/caskroom/chromedriver/chromedriver.exe")
driver.get("https://www.google.com")
its giving me the following error,
from selenium
^
SyntaxError: invalid syntax
Process finished with exit code 1
I've installed selenium, and chrome driver so not sure what the problem is, any help would be greatly appreciated. Thanks