How to set the browser's language in Cypress.io (electron/chrome)?

后端 未结 4 1288
感动是毒
感动是毒 2021-02-14 10:00

My question is about configuring Cypress to launch a browser instance in a certain language.

In order to:

  • make assertions on localized (i18n) text labels?<
4条回答
  •  遥遥无期
    2021-02-14 10:13

    In support/index.js

    Cypress.on('window:before:load', window => {
      Object.defineProperty(window.navigator, 'language', { value: 'fr' });
    });
    

提交回复
热议问题