Selenium Java - TestNG Integration
Find the issue in this TestNG snippet:
@Test(priority=1)
public void testOne() {}
@Test(priority=2, dependsOnMethods={"testTwo"})
public void testThree() {}
@Test(priority=3)
public void testTwo() {}
