All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.http4k.playwright.Http4kBrowser.kt Maven / Gradle / Ivy

There is a newer version: 5.35.2.0
Show newest version
package org.http4k.playwright

import com.microsoft.playwright.Browser
import org.http4k.core.Uri

/**
 * Custom Page implementation to add convenience functions to the standard Playwright model
 */
class Http4kBrowser(delegate: Browser, val baseUri: Uri) : Browser by delegate {
    override fun newPage(): HttpPage = HttpPage(super.newPage(), baseUri)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy