Framework Mode - Configuration management
Folder Structure
selenium-java-project/ ├── src/ │ ├── main/ │ │ └── java/ │ │ └── com/example/app/ │ │ └── pages/ # Page Object classes │ └── test/ │ └── java/ │ └── com/example/tests/ # Test classes ├── config/ │ ├── config.properties # Environment and browser settings │ └── credentials.properties # Secure credentials storage ├── utils/ │ └── ConfigManager.java # Configuration loader utility ├── testng.xml # TestNG suite configuration └── pom.xml # Maven build and dependency management