pl.wendigo.chrome.api.network / SearchInResponseBodyRequest

SearchInResponseBodyRequest

data class SearchInResponseBodyRequest (source)

Represents request frame that can be used with Network#searchInResponseBody operation call.

Searches for given string in response content.

Link
Network#searchInResponseBody method documentation.

See Also

NetworkOperations.searchInResponseBody

Constructors

<init>

SearchInResponseBodyRequest(requestId: RequestId, query: String, caseSensitive: Boolean? = null, isRegex: Boolean? = null)

Represents request frame that can be used with Network#searchInResponseBody operation call.

Properties

caseSensitive

val caseSensitive: Boolean?

If true, search is case sensitive.

isRegex

val isRegex: Boolean?

If true, treats string parameter as regex.

query

val query: String

String to search for.

requestId

val requestId: RequestId

Identifier of the network response to search.