Saved Bookmarks
| 1. |
How To Run The Test Cases In Group In Selenium Using Testng? |
|
Answer» Test cases in group in SELENIUM USING TestNG will be executed with the below options. If you want to execute the test cases based on one of the group like REGRESSION test or smoke test @Test(GROUPS = {"regression test", "smoke test"}) Test cases in group in Selenium using TestNG will be executed with the below options. If you want to execute the test cases based on one of the group like regression test or smoke test @Test(groups = {"regression test", "smoke test"}) |
|