+1 vote
in TestNG by
What is parameterization in TestNG?

1 Answer

0 votes
by
In TestNG, parameterization runs a test method multiple times with different values. Another name for this process is data-driven testing in TestNG. We can acquire Parameterization in TestNG in two ways:

Firstly, we can achieve it through the XML file.

Secondly, we can achieve it through the dataproviders in TestNG.

Related questions

+1 vote
asked Apr 19, 2021 in TestNG by rajeshsharma
+1 vote
asked Apr 19, 2021 in TestNG by rajeshsharma
...