This line is cousing an error:
driver = webdriver.Chrome(executable_path="/Users/omersakarya/Documents/GitHub/scraping-glassdoor-selenium/chromedriver", options=options)
Three lines below is changed because of update of selenium.
service = Service(executable_path="/Users/omersakarya/Documents/GitHub/scraping-glassdoor-selenium/chromedriver\")
options = webdriver.ChromeOptions()
driver = webdriver.Chrome(service=service, options=options)
This line is cousing an error: driver = webdriver.Chrome(executable_path="/Users/omersakarya/Documents/GitHub/scraping-glassdoor-selenium/chromedriver", options=options)
Three lines below is changed because of update of selenium.