Created
March 21, 2017 14:44
-
-
Save senz/2b170faceee71273bbbc7ef954acc6d7 to your computer and use it in GitHub Desktop.
hermione firefox profile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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