Skip to content

Instantly share code, notes, and snippets.

@sahajamit
Last active August 29, 2015 14:14
Show Gist options
  • Save sahajamit/e9ef5de7a482c31ae2dc to your computer and use it in GitHub Desktop.
Save sahajamit/e9ef5de7a482c31ae2dc to your computer and use it in GitHub Desktop.
Sample testng xml to pass the listener information to testng.
<?xml version="1.0"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<suite name="Phoenix.Equinox.Com Verification" verbose="1">
<listeners>
<listener class-name="com.testng.practise.SeleniumStarterListener"></listener>
</listeners>
<test name="Retry Test">
<classes>
<class name="com.testng.practise.Annotationtransformerexample"></class>
</classes>
</test>
</suite>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment