Method ResponseContains
API
Checks if raw response contains the given string data
Usage
Function ResponseContains(
String Str
)
Parameters
Str
Type: String
String data
Returns
Boolean result
Example
VBScript
msgbox Server("API Server").Method("GetCompanyName").ResponseContains("ZAPTEST")
JavaScript
alert(Server("API Server").Method("GetCompanyName").ResponseContains("ZAPTEST"));

GetCompanyName

ResponseContains
ZAPTEST
Comment
Call GetCompanyName method and check if response contains "ZAPTEST"