Packages

Playwright is an Elixir library to automate Chromium, Firefox and WebKit browsers with a single API. Playwright delivers automation that is ever-green, capable, reliable and fast.

Current section

Files

Jump to
playwrightais lib playwright api page.ex
Raw

lib/playwright/api/page.ex

defmodule Playwright.API.Page do
@moduledoc """
`Playwright.API.Page` is the upcoming replacement for `Playwright.Page`.
Stay tuned.
"""
def goto(page, url, options \\ %{}) do
{:ok, Playwright.Page.goto(page, url, options)}
end
end