I'm still trying to open a browser from python, using selenium. This is the code:
from selenium import webdriver
browser=webdriver.Chrome()
browser.get("https://facebook.com")
This error appears:
WebDriverException: 'chromedriver' executable needs to be in PATH. Please see
https://sites.google.com/a/chromium.org/chromedriver/home
I already downloaded the chromedriver executable but I do not know what is meant by "PATH" I guess it's a file but I do not know what it is.