i have using selenium for a long time and some day i trying to open my program and the chromedriver doesnt open, i update the chromedriver and its working fine , but the option parameters that i have doesnt work. here is the code:
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
option = webdriver.ChromeOptions()
option.add_argument("--disable-infobars")
option.add_argument("--disable-popup-blocking")
driver = webdriver.Chrome(chrome_options=option)
driver.get("https://www1.gsis.gr/taxisnet/mytaxisnet")
i am using chrome version 78.0.3904.70 in my windows, my chromedriver is 78.0.3904.70, my selenium 3.141.0 and i use python 2.7.10