Selenium Java - TestNG Integration
Find the problem in this TestNG code:
@Test(dependsOnMethods = {"testA"})
public void testB() { }
@Test(dependsOnMethods = {"testB"})
public void testA() { }