Selenium doesn't open the specified URL and shows data:,
问题 I am trying to open the URL using selenium in chrome. I have chromedriver available with me. following is the code I want to execute. from selenium import webdriver chrome_options = webdriver.ChromeOptions() chrome_options.add_argument("--disable-infobars") driver = webdriver.Chrome(executable_path="./chromedriver", chrome_options=chrome_options) driver.get("https://google.com") The browser is opened successfully but it doesn't open the specified URL. The URL in the browser is data:, . Any