I'm having some issues with selenium in my python script.
import time
from selenium import webdriver
browser = webdriver.Chrome(path/to/chromedriver)
After executing the script the terminal is just outputting :
SyntaxError: invalid syntax
the problem is in third line
browser = webdriver.Chrome(path/to/chromedriver)
and I don't really know what to do. I'm pretty sure that the chrome driver path is correct tho.
path/to/chromedriver, without quotes?