/// // *********************************************************** // This example plugins/index.js can be used to load plugins // // You can change the location of this file or turn off loading // the plugins file with the 'pluginsFile' configuration option. // // You can read more here: // https://on.cypress.io/plugins-guide // *********************************************************** // This function is called when a project is opened or re-opened (e.g. due to // the project's config changing) /** * @type {Cypress.PluginConfig} */ function setViewPortsAndUserAgent(device) { if (device === 'mob' || device === 'mobile') { return { viewportWidth: 360, viewportHeight: 780, userAgent: 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/16D57' } } if (device === 'web' || device === 'desktop') { return { viewportWidth: 1266, viewportHeight: 768, userAgent: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36' } } throw new Error("device not supported - [please set device to mob or web]") } module.exports = (on, config) => { const viewportConfig = setViewPortsAndUserAgent(config.env.device) config = Object.assign({}, viewportConfig) return config }