Skip to content

Commit 4a77d3b

Browse files
committed
Optimize IE settings
1 parent fba066b commit 4a77d3b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

seleniumbase/core/browser_launcher.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,9 +288,9 @@ def get_local_driver(browser_name, headless, proxy_string):
288288
"IE Browser is for Windows-based operating systems only!")
289289
from selenium.webdriver.ie.options import Options
290290
ie_options = Options()
291-
ie_options.ignore_protected_mode_settings = True
291+
ie_options.ignore_protected_mode_settings = False
292292
ie_options.ignore_zoom_level = True
293-
ie_options.require_window_focus = True
293+
ie_options.require_window_focus = False
294294
ie_options.native_events = True
295295
ie_options.full_page_screenshot = True
296296
ie_options.persistent_hover = True

0 commit comments

Comments
 (0)