Skip to content

Instantly share code, notes, and snippets.

@SarahElson
Created February 22, 2024 06:24
Automate UI Tests With Selenium
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd">
<suite name="Suite">
<test name="Test">
<!-- Classes element contains the classes to be included in the test -->
<classes>
<!-- Reference to the DemoClass test class -->
<class name="demo.DemoClass"/>
</classes>
</test> <!-- End of Test -->
</suite> <!-- End of Suite -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment