I am new to testNG, I have the below code:
@BeforeMethod
public void getGroup(ITestAnnotation annotation){
System.out.println("Group Name is --" + annotation.getGroups()) ;
}
@Test(groups = { "MobilSite" })
public void test1(){
System.out.println("I am Running Mobile Site Test");
}
I want the group name in before method, I tried using ITestAnnotation
but when I run the test I am getting the below error
Method getGroup requires 1 parameters but 0 were supplied in the @Configuration annotation.
Can you please help the parameter which I should pass from the XML?
Use the reflected method to get the group of the test as below :
@BeforeMethod
public void befMet(Method m){
Test t = m.getAnnotation(Test.class);
System.out.println(t.groups()[0]);//or however you want to use it.
}
In case if you want to know the all groups name to which executing @Test
method belongs to:
@BeforeMethod
public void beforeMethod(Method method){
Test testClass = method.getAnnotation(Test.class);
for (int i = 0; i < testClass.groups().length; i++) {
System.out.println(testClass.groups()[i]);
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With