0

Images are NOT loading because "Insecure content" in chrome is "Blocked". How to overcome this during automation testing using selenium ? PFA image. NOTE: This not "Not secure" which displays in address bar.

    1 Answer 1

    0

    Here's a complete script with the options you want:

    from selenium import webdriver options = webdriver.ChromeOptions() options.add_argument("--ignore-certificate-errors") options.add_argument("--allow-insecure-localhost") options.add_argument("--allow-running-insecure-content") driver = webdriver.Chrome(options=options) # ... driver.quit() 

    You might not need all those options, but definitely the first.

      Start asking to get answers

      Find the answer to your question by asking.

      Ask question

      Explore related questions

      See similar questions with these tags.