So our application works in production with a CORS enabled.
I have a project that isn\'t CORS enabled locally. Is there a way to disable web security for protractor? Is
@alecxe's solution wasn't working for me. I eventually came up with the following after some cli trial and error; I'm sharing my solution here (it took some hair pulling to figure it out) in case there are other lost souls out there having the same problem:
capabilities: {
browserName: 'chrome',
chromeOptions: {
args: ['--disable-web-security', '--user-data-dir']
}
}
Cheers!