Created
February 22, 2024 06:24
-
-
Save SarahElson/4ec66b6930abfd12bafb44cd651df9f9 to your computer and use it in GitHub Desktop.
Automate UI Tests With Selenium
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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