File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 13
13
ARCHIVE_EXISTING_LOGS = False
14
14
ARCHIVE_EXISTING_DOWNLOADS = False
15
15
16
+ # If True, switch to new tabs automatically if a click opens a new one.
17
+ # (Only happens if the initial tab is still on same URL as before.)
18
+ SWITCH_TO_NEW_TABS_ON_CLICK = True
19
+
16
20
# Waiting for Document.readyState to be "Complete" after browser actions.
17
21
WAIT_FOR_RSC_ON_PAGE_LOADS = True
18
22
WAIT_FOR_RSC_ON_CLICKS = True
Original file line number Diff line number Diff line change @@ -89,6 +89,8 @@ def set_settings(settings_file):
89
89
settings .HTML_REPORT = override_settings [key ]
90
90
elif key == "RESULTS_TABLE" :
91
91
settings .RESULTS_TABLE = override_settings [key ]
92
+ elif key == "SWITCH_TO_NEW_TABS_ON_CLICK" :
93
+ settings .SWITCH_TO_NEW_TABS_ON_CLICK = override_settings [key ]
92
94
elif key == "WAIT_FOR_RSC_ON_PAGE_LOADS" :
93
95
settings .WAIT_FOR_RSC_ON_PAGE_LOADS = override_settings [key ]
94
96
elif key == "WAIT_FOR_RSC_ON_CLICKS" :
You can’t perform that action at this time.
0 commit comments