pl.wendigo.chrome.RequestFrame.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chrome-reactive-kotlin Show documentation
Show all versions of chrome-reactive-kotlin Show documentation
Chrome Reactive - low level, remote chrome debugger protocol client (DevTools)
package pl.wendigo.chrome
/**
* Represents request frame.
*/
data class RequestFrame(
/**
* Request id, must be unique.
*/
val id: Long,
/**
* Protocol method (domain.method_name i.e. Page.navigateTo)
*/
val method: String,
/**
* Request params (if any)
*/
val params: Any?
)