Framework Mode - Docker execution environment
Folder Structure
selenium-java-docker-framework/ ├── src/ │ └── test/ │ └── java/ │ ├── pages/ # Page Object classes │ ├── tests/ # Test classes │ └── utils/ # Utility classes (e.g., Docker helpers) ├── docker/ # Docker related files │ ├── Dockerfile # Docker image build instructions │ ├── docker-compose.yml # Compose file to run Selenium Grid and tests │ └── entrypoint.sh # Script to start tests inside container ├── config/ │ └── test.properties # Test configuration (URLs, credentials) ├── pom.xml # Maven build file └── README.md # Project overview and Docker usage instructions