searchInResponseBody
suspend fun searchInResponseBody(args: Network.SearchInResponseBodyParameter, mode: CommandMode = CommandMode.DEFAULT): Network.SearchInResponseBodyReturn
Searches for given string in response content.
suspend fun searchInResponseBody(requestId: String, query: String, caseSensitive: Boolean? = null, isRegex: Boolean? = null): Network.SearchInResponseBodyReturn
Searches for given string in response content.
Parameters
requestId
Identifier of the network response to search.
query
String to search for.
caseSensitive
If true, search is case sensitive.
isRegex
If true, treats string parameter as regex.