Versions in this module Expand all Collapse all v0 v0.0.2 Apr 17, 2026 v0.0.1 Apr 15, 2026 Changes in this version + type Browser struct + func (b *Browser) Click(ctx context.Context, selector string) error + func (b *Browser) CloseBrowser() error + func (b *Browser) ClosePage(ctx context.Context, page playwright.Page) error + func (b *Browser) Evaluate(ctx context.Context, script string, args ...interface{}) (interface{}, error) + func (b *Browser) Fill(ctx context.Context, selector string, text string) error + func (b *Browser) GetActivePage(ctx context.Context) (playwright.Page, error) + func (b *Browser) GetHTML(ctx context.Context, selector string) (string, error) + func (b *Browser) GetPages(ctx context.Context) ([]playwright.Page, error) + func (b *Browser) GetTitle(ctx context.Context) (string, error) + func (b *Browser) GetUrl(ctx context.Context) (string, error) + func (b *Browser) Goto(ctx context.Context, url string) (string, error) + func (b *Browser) InstallBrowser() error + func (b *Browser) NewPage(ctx context.Context) error + func (b *Browser) OpenBrowser(ctx context.Context, args map[string]interface{}) error + func (b *Browser) Screenshot(ctx context.Context, path string) error + func (b *Browser) SelectOption(ctx context.Context, selector string, value string) error + func (b *Browser) Sleep(ctx context.Context, duration time.Duration) error + func (b *Browser) SwitchPage(ctx context.Context, index int) error + func (b *Browser) WaitForSelector(ctx context.Context, selector string) error