Bug 1592063 Comment 40 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

Thanks to :mleclair and :acreskey I can get browsertime to start and connect to Fenix with:

+        # if running on Fenix we must add the intent as we use a special non-default one there
+        if self.config['app'] == "fenix" and self.config.get('intent') is not None:
+            args_list.extend(['--firefox.android.intentArgument=-a'])
+            args_list.extend(['--firefox.android.intentArgument', self.config['intent']])
+            args_list.extend(['--firefox.android.intentArgument=-d'])
+            args_list.extend(['--firefox.android.intentArgument', str('about:blank')])

Now in Fenix it tries to load the test page but just shows "no internet connection" which means the mozproxy is not working for some reason, so that's the next issue to fix...
Thanks to :mleclair and :acreskey I can get browsertime to start and connect to Fenix with:

args_list.extend(['--firefox.android.intentArgument=-a'])
args_list.extend(['--firefox.android.intentArgument', self.config['intent']])
args_list.extend(['--firefox.android.intentArgument=-d'])
args_list.extend(['--firefox.android.intentArgument', str('about:blank')])

Now in Fenix it tries to load the test page but just shows "no internet connection" which means the mozproxy is not working for some reason, so that's the next issue to fix...

Back to Bug 1592063 Comment 40