How does the TestNG InvocationTimeout Attribute work in the Selenium Program?
package com.selenium.TestNG;
import org.testng.annotations.Test;
public class TestNGInvocationcountTimeoutEx
{
@Test(invocationTimeOut=5)
public void test()
{
System.out.println("The Value Of I");
}
}