Framework Mode - Emulators vs real devices
Folder Structure for Mobile Testing Framework
mobile-testing-framework/ ├── config/ │ ├── environments/ │ │ ├── dev.config.json │ │ ├── staging.config.json │ │ └── prod.config.json │ └── devices.config.json ├── tests/ │ ├── emulator/ │ │ ├── login.test.js │ │ └── navigation.test.js │ └── real-device/ │ ├── login.test.js │ └── navigation.test.js ├── pageObjects/ │ ├── LoginPage.js │ └── HomePage.js ├── utils/ │ ├── deviceManager.js │ └── testHelpers.js ├── reports/ │ └── latest-report.html └── config.js