Framework Mode - Selenium Grid setup
Folder Structure for Selenium Grid Project
selenium-grid-project/ ├── src/ │ └── test/ │ └── java/ │ ├── config/ # Grid and browser configuration classes │ ├── pages/ # Page Object Model classes │ ├── tests/ # Test classes using TestNG or JUnit │ └── utils/ # Utility classes (e.g., WebDriver factory) ├── resources/ │ ├── grid-config.properties # Grid hub and node URLs, browser settings │ └── testdata/ # Test data files ├── pom.xml # Maven dependencies and build config └── README.md # Project overview and setup instructions