Created
July 10, 2023 12:44
-
-
Save kimihito/8abf207da30502d2c89db3ce259c04af to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mix.install([{:playwright, "~> 1.18.0-alpha.1"}]) | |
Playwright.CLI.install_deps() | |
Playwright.CLI.install() | |
browser = Playwright.launch() | |
page = browser |> Playwright.Browser.new_page() | |
page |> Playwright.Page.goto("https://google.com") | |
page |> Playwright.Page.title() |> IO.puts() | |
browser |> Playwright.Browser.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment