Skip to content

Instantly share code, notes, and snippets.

@abhaybhargav
Created April 14, 2018 14:01
Show Gist options
  • Save abhaybhargav/c984574722ca28ec97c34eca08b06ff3 to your computer and use it in GitHub Desktop.
Save abhaybhargav/c984574722ca28ec97c34eca08b06ff3 to your computer and use it in GitHub Desktop.
Chrome Settings, with proxy being set to ZAP host and port
const CHROME_CONFIGURATION = {
browserName: 'chrome',
javascriptEnabled: true,
acceptSslCerts: true,
chromeOptions: {
args: [
'--proxy-server=http://127.0.0.1:8090'
]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment