ContributionsMost RecentMost LikesSolutionsRe: how to compare decimal values//define two decimal variables (float) as def float a=0.0; def float b=0.0; //value "x" that you read from response message a=x.toFloat();; //value "y" that you read from excel b=y.toFloat();; //now compare if( a == b ) { }Re: Needs to execute a range of test cases.Thanks for code snipt.Re: Needs to execute a range of test cases.may you please provide the code snipt?Re: Is soapui supports UTF-16 Encoding?Thanks.Re: Use response values in test stepIf the test step request name is "XXXXXXX" //Getting the values from a response groovyUtils = new com.eviware.soapui.support.GroovyUtils(context) XMLHolder = groovyUtils.getXmlHolder("XXXXXXX#Response") //"ports" is a array variable def ports = XMLHolder.getNodeValues("//logicalPort") //Setting the value to a request XMLHolder = groovyUtils.getXmlHolder("XXXXXXX#Request") //ports[0] holds the first port value, ports[1] holds the second port value and so on.... XMLHolder.setNodeValue("//logicalPort", ports[0]); XMLHolder.updateProperty()Needs to execute a range of test cases.I want to execute selected test cases within a test suite. For example, I have a test suite that contains 100 test cases numbers from 1 to 100 and I only want to execute test cases from 25 to 40. Is it possible using soapui testing tool? If possible, which version supports this functionality. Please reply, thanks in advance.Is soapui supports UTF-16 Encoding?I have seen that soapui supports UTF-8 and iso-8859-1. I want to confirm that is soapui supports other encoding except these two, such as UTF-16?Soapui Text EncodingIs Soapui supports UTF-16 text encoding or which encodings?