Framework Mode - Java environment setup (JDK, IDE)
Folder Structure for Selenium Java Test Project
selenium-java-project/ ├── src/ │ ├── main/ │ │ └── java/ # Application source code (if any) │ └── test/ │ └── java/ # Test source code │ ├── pages/ # Page Object classes │ ├── tests/ # Test classes │ └── utils/ # Utility/helper classes ├── pom.xml # Maven build and dependency file ├── testng.xml # TestNG suite configuration └── README.md # Project overview and setup instructions