seleniumrunner : Correctly fetch SLAP parameters

parent e9c43598
...@@ -57,14 +57,14 @@ class Recipe(BaseSlapRecipe): ...@@ -57,14 +57,14 @@ class Recipe(BaseSlapRecipe):
arguments = dict( arguments = dict(
xvfb_binary = self.options['xvfb_binary'], xvfb_binary = self.options['xvfb_binary'],
display = display, display = display,
suite_name = self.parameter_dict['suite_name'], suite_name = self.parameter_dict.get('suite_name'),
base_url = self.parameter_dict['url'], base_url = self.parameter_dict.get('url'),
browser_argument_list = [], browser_argument_list = [],
user = self.parameter_dict['user'], user = self.parameter_dict.get('user'),
password = self.parameter_dict['password'], password = self.parameter_dict.get('password'),
project = self.parameter_dict['project'], project = self.parameter_dict.get('project'),
test_report_instance_url = \ test_report_instance_url = \
self.parameter_dict['test_report_instance_url'], self.parameter_dict.get('test_report_instance_url'),
etc_directory = self.etc_directory) etc_directory = self.etc_directory)
# Check wanted browser XXX-Cedric not yet used but can be useful # Check wanted browser XXX-Cedric not yet used but can be useful
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment