Framework Mode - XPath axes (parent, following-sibling, preceding)
Folder Structure of Selenium Java Test Framework
selenium-java-framework/ ├── src/ │ ├── main/ │ │ └── java/ │ │ └── com/example/pages/ # Page Object classes │ │ ├── LoginPage.java │ │ └── DashboardPage.java │ └── test/ │ └── java/ │ └── com/example/tests/ # Test classes │ ├── LoginTest.java │ └── DashboardTest.java ├── resources/ │ └── testdata/ # Test data files (CSV, JSON) ├── config/ │ └── config.properties # Environment and browser configs ├── utils/ │ ├── WebDriverFactory.java # WebDriver setup and utilities │ └── WaitUtils.java # Explicit wait helpers ├── testng.xml # TestNG suite configuration └── pom.xml # Maven build and dependencies