如何设置Chrome';Cypress中的s(无头模式)语言?

如何设置Chrome';Cypress中的s(无头模式)语言?,cypress,Cypress,是否可以在Cypress中使用特定语言(如法语)无头运行Chrome 我必须用多种语言运行该套件 我已将此代码添加到plugin/index.js中: on('before:browser:launch', (browser, launchOptions) => { if (browser.name !== 'electron') { const language = config.env.lang || 'en'; launchOptions.pr

是否可以在Cypress中使用特定语言(如法语)无头运行Chrome

我必须用多种语言运行该套件

我已将此代码添加到plugin/index.js中:

on('before:browser:launch', (browser, launchOptions) => {
    if (browser.name !== 'electron') {
        const language = config.env.lang || 'en';
        launchOptions.preferences.default.intl = { accept_languages: language }
        return launchOptions;;
    }
  });
如果我运行Chrome(headed),它会工作,但headless不会