Annotations of testng

Prioritising in testng
Grouping in testng

@BeforeTest -- executes the method once for all classes

@BeforeClass-- executes the method once per class before test method

@BeforeMethod-- executes the method inside a class everytime before every test method

Comments