mirror of
https://github.com/playwright-community/playwright-go.git
synced 2026-06-03 21:02:27 +08:00
36 lines
993 B
Go
36 lines
993 B
Go
//go:build ignore
|
|
// +build ignore
|
|
|
|
package main
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/playwright-community/playwright-go"
|
|
)
|
|
|
|
func assertErrorToNilf(message string, err error) {
|
|
if err != nil {
|
|
log.Fatalf(message, err)
|
|
}
|
|
}
|
|
|
|
func main() {
|
|
pw, err := playwright.Run()
|
|
assertErrorToNilf("could not launch playwright: %w", err)
|
|
browser, err := pw.Chromium.Launch()
|
|
assertErrorToNilf("could not launch Chromium: %w", err)
|
|
context, err := browser.NewContext()
|
|
assertErrorToNilf("could not create context: %w", err)
|
|
page, err := context.NewPage()
|
|
assertErrorToNilf("could not create page: %w", err)
|
|
_, err = page.Goto("https://github.com/microsoft/playwright")
|
|
assertErrorToNilf("could not goto: %w", err)
|
|
_, err = page.PDF(playwright.PagePdfOptions{
|
|
Path: playwright.String("playwright-example.pdf"),
|
|
})
|
|
assertErrorToNilf("could not create PDF: %w", err)
|
|
assertErrorToNilf("could not close browser: %w", browser.Close())
|
|
assertErrorToNilf("could not stop Playwright: %w", pw.Stop())
|
|
}
|