protractor - launch chrome with to disable web security for cors

后端 未结 2 590
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-08 00:39

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

2条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-08 01:30

    There is also args inside chromeOptions, where you can provide the --disable-web-security and --user-data-dir arguments.

    If you are running the tests locally, make sure to supply a profile location for the --user-data-dir, otherwise Chrome will use the default profile and load the page in the current browser session (running with all of your extensions and settings).

    capabilities: {
      'browserName': 'chrome',
      'chromeOptions': {
        'args': ['--disable-web-security', '--user-data-dir=~/.e2e-chrome-profile']
      }
    },
    

提交回复
热议问题