ContributionsMost RecentMost LikesSolutionsRe: Evolution of the content of the context (Scriptiing) Hello, In a test Step, I have a groovy assertion that compare the response against an expected one that is stored in a file. So I would like to push in context push(assertionID, filename) So in the project teardown code, i would like to get thos information back in ordere to build a report with the list of files. I found that ExcecutionId is in the testStep context and in the project context. But other information have been lost. Just write a groovy assertion, push a data and you will get it in the testcase teaderdown step, not in the project teardown script. Thansk, PHL Evolution of the content of the context (Scriptiing) Hello, I push some value in the context in a testStep. Then in the associate TestCase teardown script, is it possible to get it back. But this value is not yet in the context in project teardown script. How to save data from a Test Step in order to get it in the proeject teardown script. Thanks, Re: image comparison Hello, My Strategy with PIL is : Extract the image from the screen (1024*1024). As the image is displayed in an application, get the window coordonate of the application, and then get only the window of the application (for instance (15,15) to (255,255)) You know the structure of application, so you know where the actual image is, so extact it Now you have the expected and the actual pictures In fact in my case, I reduce the comparison size, because only a part tof the picture is useful The easiest way to compare the images, is to convert them to a raw list of pixels, then you have just ot do a octet comparaiso The last step could be more complex in case of "String" comparaison. The antializing mechanism modify the color of some pixels to allow a better human reading, but the comparaison is more complex. I hope this will help you Re: image comparisonHello, For manual testing beyong compare is helpful. In another context, I use PIL (Python Image Library) where I can easily do image comparison (filtering because of anti-aliasing). Sikuli, that is in java can give you some help I hope theses pointers will give some idea. PHLRe: Add custom property to TestStep I will run a Sopui test. Then in the teardown step, I will read the results and add them in the global comany Quality system. In our quality system, I must link a step to a requirement. This means that I must add in Soapui Some extra information for each step that are used for the quality systme not to create the REST request. At the project level, testcase level, we can add custom property that are readable by groovy script. So the first idea is to do the same thing at the Test Step level: adding Custom Property. But it seems that is not possible. How to easily add extra information at the test level ? Thanks Add custom property to TestStep Hello, When I defined a REST Test Step, I would like to have a custom property. In fact I would like to have a easy way to add requirement for each Test Step. Is it possible ? Another possibility could be to modify the TestStep Name witth some|thing like : Test Step name | requirements ? Better idea ? GUI method for doing that ? Thanks PHL