Forum Discussion
6 Replies
- Have you tried using a datasink to do that?
- alibaba82Super ContributorI need to do it via groovy.
- alibaba82Super Contributorany updates ?
- Hi Ali!
hmm.. from where in soapUI are you going to be running this script?
regards,
/Ole
eviware.com - alibaba82Super Contributori have testsuite tear down script. I would like to export the testcase names to a xml file.
- Hi!
ok.. then something like the following:
def file = new File( ... )
file.write "
for( testCase in testSuite.testCaseList )
{
file.write( "" + testCase.name + " " )
}
file.write "
file.close()
works ok?
regards,
/Ole
eviware.com