java - Is it possible to make dynamic tests in testNG? -
is possible make test sets in testng execute based on condition.
for example, let's have captured 100 odd web-elements , have 6 common tests run on each of element based on type of element. have stored elements in list. if element of type text box run test1, test2 , test3. otherwise, if element of type combo box run test4,5 , 6.
i have seen there option of test grouping in testng, how can test grouping can used in above context?
Comments
Post a Comment