Framework Mode - Automation framework types
Folder Structure Example for Automation Framework Types
automation-framework/ ├── data/ # Test data files (CSV, JSON, Excel) ├── libraries/ # Reusable helper functions or utilities ├── reports/ # Test execution reports ├── tests/ # Test scripts organized by type │ ├── keyword_driven/ # Tests using keyword-driven approach │ ├── data_driven/ # Tests using data-driven approach │ ├── modular/ # Tests using modular approach │ ├── hybrid/ # Tests combining multiple approaches ├── config/ # Configuration files (env, browser settings) ├── page_objects/ # Page Object Model classes (if applicable) ├── drivers/ # WebDriver executables or setup scripts ├── utils/ # Utility scripts (logging, waits, etc.) └── README.md # Project overview and instructions