Skip to content

Instantly share code, notes, and snippets.

@elgalu
Created November 12, 2014 13:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elgalu/dbfa88d3fa0502a64892 to your computer and use it in GitHub Desktop.
Save elgalu/dbfa88d3fa0502a64892 to your computer and use it in GitHub Desktop.
StackOverflow: Activating chrome language flags when activating from protractor (selenium)
// An example configuration file.
exports.config = {
// Capabilities to be passed to the webdriver instance.
capabilities: {
browserName: 'chrome',
chromeOptions: {
prefs: {
intl: { accept_languages: "fr-FR" }
}
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment