Skip to content

Instantly share code, notes, and snippets.

@SarahElson
Created February 22, 2024 06:24
Show Gist options
  • Save SarahElson/4ec66b6930abfd12bafb44cd651df9f9 to your computer and use it in GitHub Desktop.
Save SarahElson/4ec66b6930abfd12bafb44cd651df9f9 to your computer and use it in GitHub Desktop.
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