summaryrefslogtreecommitdiff
path: root/test/monkey_driver.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/monkey_driver.py')
-rwxr-xr-xtest/monkey_driver.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/monkey_driver.py b/test/monkey_driver.py
index 57ad5e4fe..6b2451f37 100755
--- a/test/monkey_driver.py
+++ b/test/monkey_driver.py
@@ -208,9 +208,9 @@ def run_test_step_action_launch(ctx, step):
ctx['browser'] = DriverBrowser(monkey_cmd=[ctx["monkey"]], quiet=True, wrapper=ctx.get("wrapper"))
assert_browser(ctx)
ctx['windows'] = dict()
- for arg in step.get('args', []):
- print(get_indent(ctx) + " " + arg)
- ctx['browser'].pass_options(arg)
+ for option in step.get('options', []):
+ print(get_indent(ctx) + " " + option)
+ ctx['browser'].pass_options(option)
def run_test_step_action_window_new(ctx, step):