├── .gitignore ├── .gitpod.yml ├── README.md ├── cloudbuild.yaml ├── pom.xml ├── single.xml └── src └── test └── java └── com └── lambdatest └── TestNGRelativeLocator.java /.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | /bin/ 3 | .project 4 | .settings 5 | .theia 6 | -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveenLT/java-testng-relative-locators/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveenLT/java-testng-relative-locators/HEAD/README.md -------------------------------------------------------------------------------- /cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveenLT/java-testng-relative-locators/HEAD/cloudbuild.yaml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveenLT/java-testng-relative-locators/HEAD/pom.xml -------------------------------------------------------------------------------- /single.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveenLT/java-testng-relative-locators/HEAD/single.xml -------------------------------------------------------------------------------- /src/test/java/com/lambdatest/TestNGRelativeLocator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praveenLT/java-testng-relative-locators/HEAD/src/test/java/com/lambdatest/TestNGRelativeLocator.java --------------------------------------------------------------------------------