Framework Mode - Why test structure ensures clarity
Folder Structure
project-root/ ├── src/ │ └── test/ │ └── java/ │ ├── com/ │ │ └── example/ │ │ ├── pages/ │ │ │ └── LoginPage.java │ │ ├── tests/ │ │ │ └── LoginTest.java │ │ └── utils/ │ │ └── WebDriverFactory.java ├── resources/ │ ├── testdata/ │ │ └── users.csv │ └── config.properties ├── pom.xml └── README.md