Browser
interface Browser
Represents a browser instance that can be controlled programmatically.
This class provides methods to start the browser, navigate to URLs, manage tabs, and handle browser events.
You can create a new instance of this class using the createBrowser method:
fun main() = runBlocking {
val browser = createBrowser(this)
// Use the browser instance to do things...
browser.stop()
}
Content copied to clipboard