Framework Mode - Mobile testing types
Folder Structure for Mobile Testing Framework
mobile-testing-framework/ ├── app/ │ ├── android/ │ │ └── app-debug.apk │ └── ios/ │ └── app-debug.ipa ├── tests/ │ ├── functional/ │ ├── performance/ │ ├── compatibility/ │ └── security/ ├── pages/ │ ├── android/ │ └── ios/ ├── utils/ │ ├── device_manager.py │ ├── logger.py │ └── helpers.py ├── config/ │ ├── env_config.yaml │ └── capabilities.json ├── reports/ │ └── latest_report.html ├── conftest.py └── README.md