Skip to content

Commit

Permalink
disable-features=InsecureDownloadWarnings
Browse files Browse the repository at this point in the history
  • Loading branch information
dpanfilovadcombo committed Jun 6, 2024
1 parent 436a793 commit f755a5f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions combo_e2e/driver/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ def _make_chrome_options(cls) -> Options:
options.add_experimental_option("excludeSwitches", ["enable-automation"])
options.add_experimental_option("useAutomationExtension", False)
options.add_argument("--disable-blink-features=AutomationControlled")
options.add_argument('--ignore-certificate-errors')
options.add_argument('--allow-running-insecure-content')
options.add_argument('--disable-features=InsecureDownloadWarnings')
parts = filter(lambda o: o.strip(), config.CHROME_OPTIONS.split(";"))
for opt in parts:
options.add_argument(opt)
Expand Down

0 comments on commit f755a5f

Please sign in to comment.