Packages
playwrightais
1.32.1-rc
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
Current section
Files
lib/mix/tasks/playwright.install.ex
defmodule Mix.Tasks.Playwright.Install do
@moduledoc """
Installs Playwright browsers.
```bash
$ mix playwright.install
```
"""
@shortdoc "Installs Playwright browsers in OS specific locations"
use Mix.Task
@impl true
def run(_args) do
Playwright.CLI.install()
end
end