Forum Discussion
goutham777
15 years agoOccasional Contributor
Hi ,
SoapUITestCaseRunner runner = new SoapUITestCaseRunner();
String a[] ={"email=xxx","password=yyy"};
runner.setProjectProperties(a);
Where email and password are properties
you can also do the same using
WsdlProject project = new WsdlProject( "pat to ur xml " );
project.setPropertyValue("email", "xxxx");
Thanks,
Goutham
SoapUITestCaseRunner runner = new SoapUITestCaseRunner();
String a[] ={"email=xxx","password=yyy"};
runner.setProjectProperties(a);
Where email and password are properties
you can also do the same using
WsdlProject project = new WsdlProject( "pat to ur xml " );
project.setPropertyValue("email", "xxxx");
Thanks,
Goutham