ContributionsMost RecentMost LikesSolutionsRe: how to select multiple values from one excel cell You could split theprereqby comma, or use contains if it is a very simple case. if (prereq.contains('function1')) Re: Capture header value from POST to transfer to subsequent GET's header? If I read that correctly you can use standard property expansion in the value field of a header, even if right click functionality is not available. Re: Capture Header Value For Property Transfer Remove the dot before [0] andtoString() is probably not necessary as the property value will always be set as string. groovyUtils.setPropertyValue("Properties", "originalFilename", value[0]) Re: MS SQL Server JDBC connection not working in Ready API SQL Server 2014? TCP/IP is disabled by default in Microsoft SQL Server 2014 Follow the steps to enable the TCP/IP protocol Re: How to get request-URI from raw request content using groovy script To expand the properties log.info context.expand(endPoint) Re: adding assertions in soap ui to validate xml response tags with database values Did you click the Declare button under theXPath expression header to add namespace declaration? A wildcard couldbe used toskip the declaration if thatcauses a problem //*:counter_party_risk_list[1]/*:counter_party_risk[1] https://www.soapui.org/docs/functional-testing/validating-messages/validating-xml-messages.html Re: adding assertions in soap ui to validate xml response tags with database values You canstart with a JDBC request to query database values and XPath assertions to compare the result to XML response. https://community.smartbear.com/t5/SoapUI-Pro/Compare-Results-of-Soap-Response-with-JDBC-Response/td-p/35279 Re: How to set and get project level property 'Script Library' using groovy script in SOAPUI Pro Try this link https://community.smartbear.com/t5/SoapUI-Pro/Resolved-Script-Library/td-p/41858 Re: custom value for boundary in Content-Type header Thisworkaround could be useful. https://community.smartbear.com/t5/SoapUI-Open-Source/soapUI-multipart-form-data-i-don-t-know-how-to-post-form-data/td-p/123175 Re: Groovy Script To Read Pattern in a logfile, extract data and do date calculation def logfile = '''2018-02-26 10:41:21,076 [KilimWorker-4] TRACE org.hibernate.type.descriptor.sql.BasicBinder - binding parameter [6] as [VARCHAR] - REFER 2018-02-26 10:41:21,077 [KilimWorker-4] TRACE org.hibernate.type.descriptor.sql.BasicBinder - binding parameter [7] as [VARCHAR] - PRE_REFER 2018-02-26 10:41:21,077 [KilimWorker-4] TRACE org.hibernate.type.descriptor.sql.BasicBinder - binding parameter [8] as [TIMESTAMP] - 2018-02-08 23:00:52 2018-02-26 10:41:21,078 [KilimWorker-4] DEBUG com.vedaadvantage.dp3.manager.actor.Message - Audit event Individual_Duplicate_Check_Referred - End 2018-02-26 10:41:21,078 [KilimWorker-4] DEBUG com.vedaadvantage.dp3.manager.actor.DispatcherActor - execute ''' logfile.eachLine { currentLine, lineNumber -> if (currentLine.contains( 'Individual_Duplicate_Check_Referred' )) { previousLine = logfile.readLines()[lineNumber - 1] } } def timeStamp = previousLine.split(' - ').last(); def Date ts = new Date().parse("yyyy-MM-dd HH:mm:ss", timeStamp) log.info new Date() - ts