ConfigBuilder

Builder class for creating Config instances using Kotlin DSL syntax.

Example usage:

val config = config {
headless = true
userAgent = "Custom Agent"
sandbox = false
}

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
var host: String?
Link copied to clipboard
var lang: String?
Link copied to clipboard
var port: Int?
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
var userDataDir: Path?

Functions

Link copied to clipboard
fun build(): Config

Builds the Config instance with the configured parameters.