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 mix tasks playwright.install_deps.ex
Raw

lib/mix/tasks/playwright.install_deps.ex

defmodule Mix.Tasks.Playwright.InstallDeps do
@moduledoc """
Installs playwright deps.
```bash
$ mix playwright.install_deps
```
"""
@shortdoc "Installs playwright deps in OS specific locations"
use Mix.Task
@impl true
def run(_args) do
Playwright.CLI.install_deps()
end
end