Skip to content

Commit 1b687d6

Browse files
ben-c-at-mozphilimon-reset
authored andcommitted
add remote allow system access
1 parent 02b795e commit 1b687d6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

conftest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -447,6 +447,7 @@ def driver(
447447
"""
448448
try:
449449
options = Options()
450+
options.add_argument("--remote-allow-system-access")
450451
if opt_headless:
451452
options.add_argument("--headless")
452453
options.binary_location = fx_executable

modules/testrail.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def update_test_case(self, case_id, **kwargs):
173173
"""Given a test case id, update according to keyword args"""
174174
if not kwargs:
175175
return None
176-
return self.client.send_post(f"update_case/{case_id}", **kwargs)
176+
return self.client.send_post(f"update_case/{case_id}", kwargs)
177177

178178
def create_test_run_on_plan_entry(
179179
self, plan_id, entry_id, config_ids, description=None, case_ids=None

0 commit comments

Comments
 (0)