Versions in this module Expand all Collapse all v0 v0.0.2 Apr 30, 2026 v0.0.1 Apr 27, 2026 Changes in this version + type Browser struct + func NewBrowser(parent context.Context) (*Browser, error) + func (b *Browser) Close() + func (b *Browser) NewPage() (*Page, error) + type Page struct + func (p *Page) Close() + func (p *Page) Context() context.Context + func (p *Page) Eval(script string) error + func (p *Page) Evaluate(script string, out any) error + func (p *Page) FullScreenshot(path string) error + func (p *Page) Goto(url string) error + func (p *Page) Screenshot(selector, path string) error + func (p *Page) SetViewport(width, height int) error + func (p *Page) Wait(d time.Duration) + func (p *Page) WaitForFunction(expr string, timeout time.Duration) error