public interface IParametersAnnotation extends IAnnotation
Modifier and Type | Method and Description |
---|---|
String[] |
getValue()
The list of variables used to fill the parameters of this method.
|
String[] getValue()
@Parameters({ "xmlPath" })
@Test
public void verifyXmlFile(String path) { ... }
and in testng.xml:
<parameter name="xmlPath" value="account.xml" />
Copyright © 2018. All rights reserved.