ContributionsMost RecentMost LikesSolutionsRe: Is it possible to give a teststep response outcome to a next teststep? i.e. increased amount Hey Rao, I have a GET function to count all active accounts of my login webservice. I want to build a check that checks the amount of accounts after a new account has been added. So I want it to validate a +1 scenario after the POST function has been successfully completed. For now I have a contains assertion in place with RegEx \d+ so I can atleast check if I am getting a number back. The response is in JSON btw. Another problem I am facing is with a conditional goto. I have a connection check in place to validate access to the webservice. When it returns 'true', the testrun should continue. I do not want it to hog resources running the full script when the first step fails. As you can see I am still missing some fundamental knowledge of scripting. Any help would be greatly appreciated. Kevin Is it possible to give a teststep response outcome to a next teststep? i.e. increased amount Example. I test a POST method of creating an account which increases the amount of accounts by 1. To test this function I also have a count (GET) function which should show me that the amount has increased by one. Now I can check this manually, but I want to be able to create a next teststep that validates that an extra account has been created so I dont have to check it manually. Is this possible? I am using the free version at the moment. How do I create an assertion to check if the returned value is in a certain range? (REST) Hey guys, I am having problems with the following. I have a login webservice I'm trying to setup in SoapUI. I've added certain functions of the webservice like count the amount of accounts, show me all accounts etc. My question is how do I add an assertion that checks if the returned value is between, let's say for example, 1-10. So my request looks like this: GET http://s0acaw0048o/cbs.login.beheer.service/count HTTP/1.1 Accept-Encoding: gzip,deflate Host: s0acaw0048o Connection: Keep-Alive User-Agent: Apache-HttpClient/4.1.1 (java 1.5) Authorization: NTLM TlRMTVNTUAADAAAAGAAYAEAAAACwALAAWAAAAAgACAAIAQAADgAOABABAAAWABYAHgEAAAAAAAA0AQAANQIIIJvW8yio1UgUScLmnJW6aiehlOVAJiv/sU/FmzEJtuhl872ZJeEPo9sBAQAAAAAAABBO19NrndIBoZTlQCYr/7EAAAAAAgAIAEMAQgBTAFAAAQAWAFMAMABBAEMAQQBXADAAMAA0ADgATwAEAA4AYwBiAHMAcAAuAG4AbAADACYAUwAwAEEAQwBBAFcAMAAwADQAOABPAC4AYwBiAHMAcAAuAG4AbAAFAA4AYwBiAHMAcAAuAG4AbAAHAAgAEeDo02ud0gEAAAAAQwBCAFMAUAB0AHMAdABrAHYAaABuAFcAMABWAEsAQQBYADIAMQA2ADgAVAA= And the response is: HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: application/json; charset=utf-8 Expires: -1 Server: Microsoft-IIS/8.5 X-AspNet-Version: 4.0.30319 Persistent-Auth: true X-Powered-By: ASP.NET Date: Wed, 15 Mar 2017 09:09:18 GMT Content-Length: 1 7 The number 7 is the current amount of accounts active. It's the method I am using now GET "activeAccountsInteger'. Since the response is on the JSON tab, I figured I would need JSONPath, but that option is not available to me, only Xpath. So my question is: How do I create an assertion to check if the returned value is in a certain range?