Hi Iam trying to set firefox profile name in environment settings of intern config file.I have tried
environments: [
{ browserName: \'firefox\',firefox_p
As the Selenium capabilities page you mention points out, the value of firefox_profile
must be a Base64-encoded profile. Specifically, you ZIP up a Firefox profile directory, Base64 encode it, and use that string as the value of firefox_profile
. The firefox-profile npm package can make this process easier. You'll end up with something like:
environments: [
{ browserName: 'firefox', firefox_profile: 'UEsDBBQACAAIACynEk...'; },
...
],
I would recommend storing the profile string in a separate module since it's going to be around 250kb.