pl.wendigo.chrome.api.debugger / SearchInContentRequest

SearchInContentRequest

data class SearchInContentRequest (source)

Represents request frame that can be used with Debugger#searchInContent operation call.

Searches for given string in script content.

Link
Debugger#searchInContent method documentation.

See Also

DebuggerOperations.searchInContent

Constructors

<init>

SearchInContentRequest(scriptId: ScriptId, query: String, caseSensitive: Boolean? = null, isRegex: Boolean? = null)

Represents request frame that can be used with Debugger#searchInContent 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.

scriptId

val scriptId: ScriptId

Id of the script to search in.