I want get html from here. This link work OK in my browser. But if I disable cookies in settings, this page reload endless.
My basic code return blank page
options = Options()
options.add_argument("--start-maximized")
cpll = "C:\Users\aaa\chromedriver.exe"
driver = webdriver.Chrome(cpll,chrome_options=options)
driver.get("https://www.elal.com/en/PassengersInfo/Useful-Info/Flight-Schedule/Pages/Flight-Updates.aspx")
I tried add cookies, ignore SSL, change driver version, but I get this page...
What could be the problem?