Forum Discussion
SmartBear_Suppo
11 years agoSmartBear Alumni (Retired)
Hi,
It should work with loadTestRunner, check the soapui log it should be logged there. Also make sure you have the option for do not disable groovy, File > Preferences > UI setting .
You can add the following script in set up script
Thanks,
Jeshtha
It should work with loadTestRunner, check the soapui log it should be logged there. Also make sure you have the option for do not disable groovy, File > Preferences > UI setting .
You can add the following script in set up script
for (testStep in loadTestRunner.getLoadTest().getTestCase().getTestStepList()){
if (testStep.getPropertyCount() > 0){
for (prop in testStep.getPropertyList()){
log.info(testStep.getName() + " has property " + prop.getName())
}
} else{
log.info(testStep.getName() + " doesn't have properties!")
}
}
Thanks,
Jeshtha
Related Content
- 8 years ago
Recent Discussions
- 9 days ago