Framework Mode - Absolute vs relative XPath
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/
├── LoginTests.java # Test classes
└── BaseTest.java # Test setup and teardown
resources/
├── testdata/ # Test data files (CSV, JSON)
└── config.properties # Configuration file
utils/
└── WebDriverFactory.java # WebDriver setup and utilities