What are the different types of parameterization in testNG?
Hi Charity,
There are two ways in which you can use Parameterization.
With the help of Parameters annotation and TestNG XML file.
@Parameters({"name","searchkey"})
With the help of DataProvider annotation.
@Parameters({name = "searchkey"})