Forum Discussion
Thanks nmrao but I'm not having much luck with my specific scenario and finding what I need, Groovy examples seem very sparce and documentation extremly poor, and I'm having to figure this out myself. I you happen to have an example that would be much appreciated.
Okay I have figured out a solution that will delete all files after test execution (ideally I would like them to be deleted as they receive a response but I have not found antything that would allow this) also I would love if this was a test step in the GUI of Soap UI, like 'Delete File(s)':
File xmlFolder = new File("C:/test/XML Files") xmlFolder.eachFileMatch(~/.*.xml/) { file - > log.info("${file.name} will now be deleted") file.delete() }
- nmrao6 years agoChampion Level 3That is possible too.
Implement "TestRunListener.afterStep" method and have your code in there.- BernardV6 years agoOccasional Contributor
nmrao do you know of the way to identify the current file 'in-use' by the test case? As if I place my current script in there it will delete everything when it triggers; I need to reference the correct file name in TestRunListener.afterStep.
- nmrao6 years agoChampion Level 3I do not have the context "current file" or your test data structure or the way you reading files. What files are you reading actually and trying to remove it?
Related Content
- 2 years ago
- 4 years ago
Recent Discussions
- 18 days ago