I'm just starting with TestNG and Selenium
I want to perform a registration test in a collection of webpages. I've writen a Register class with the following methods
@Test( dataProvider = "WebSites", groups = "launchSite")
public void launchSite(WeboSite webSite)
@Test( dataProvider = "WebSites", groups = "goToRegPage",
dependsOnGroups = "launchSite")
public void openRegisterPage(WeboSite webSite)
@Test( dataProvider = "WebSites", groups = "register",
dependsOnGroups = "goToRegPage")
public void enterRegistrationData(BingoSite bingoSite)
So I've made each test dependant on the previous (obviously if you cannot enter the registration page you cannot register) What I want now is each webpage result be independant from the others. Now openRegisterPage is run for every webpage and if it fails in one website enterRegistrationData is not run for any of them.
What is the correct way to do this?
Thanks a lot