I need to pass a different parameter value for different classes inside a test. The following code gives me an error saying :
"The content of element type "classes" must match '(class*,parameter*)'.".
Is there any other way I can pass the parameter value to be accessible by a class?
<suite name="Project">
<test thread-count="5" name="Test">
<classes>
<parameter name="URL" value="https://testRunner1.com" />
<class name="project.TestRunner1"/>
<parameter name="URL" value="https://testRunner2.com" />
<class name="project.TestRunner2"/>
</classes>
</test>
</suite>