Framework Mode - Compatibility testing
Folder Structure for Compatibility Testing Framework
compatibility-testing-project/ ├── tests/ │ ├── browsers/ │ │ ├── chrome_tests.js │ │ ├── firefox_tests.js │ │ └── safari_tests.js │ ├── devices/ │ │ ├── mobile_tests.js │ │ └── tablet_tests.js │ └── os/ │ ├── windows_tests.js │ └── macos_tests.js ├── config/ │ ├── environments.json │ ├── browsers.json │ └── devices.json ├── utils/ │ ├── driverSetup.js │ ├── testHelpers.js │ └── logger.js ├── reports/ │ └── compatibility-report.html ├── cypress.config.js └── package.json