Skip to content

Instantly share code, notes, and snippets.

@senz
Created March 21, 2017 14:44
Show Gist options
  • Save senz/2b170faceee71273bbbc7ef954acc6d7 to your computer and use it in GitHub Desktop.
Save senz/2b170faceee71273bbbc7ef954acc6d7 to your computer and use it in GitHub Desktop.
hermione firefox profile
const fs = require('fs');
let profile = fs.readFileSync(process.cwd() + '/firefox_profile.zip').toString('base64');
module.exports = {
hermione: {
browsers: {
firefox: {
desiredCapabilities: {
browserName: "firefox",
firefox_profile: profile
}
}
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment