Both annotations runs before the @test in testNG then what is the difference between two of them.
@BeforeTest- runs before each test declared inside testng.xml
@BeforeTest
@BeforeMethod- runs before each test method declared within class and under an @Test annotation
@BeforeMethod
@Test