Created
September 24, 2014 16:02
-
-
Save christian-bromann/eace51f4f836aeac4acd to your computer and use it in GitHub Desktop.
chromeoptions in webdriverio
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
var client = require("webdriverio").remote({ | |
desiredCapabilities: { | |
browserName: 'chrome', | |
chromeOptions: { | |
args: ['window-size=2880,1800'] | |
} | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is it possible to enable performance logging with chrome options? For example,
chromeOptions: {
perfLoggingPrefs: {
enableNetwork: true
}
}
Here is a link to chromeoptions: https://sites.google.com/a/chromium.org/chromedriver/capabilities