Framework Mode - Why browser control drives test flow
Folder Structure of a Selenium Java Test Framework
src/
├── main/
│ └── java/
│ └── com/example/app/
│ └── pages/ # Page Object classes
│ ├── LoginPage.java
│ └── HomePage.java
├── test/
│ └── java/
│ └── com/example/tests/ # Test classes
│ ├── LoginTest.java
│ └── HomeTest.java
└── resources/
├── config.properties # Configuration files
└── testdata.csv # Test data files