We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm running a playwright server locally using Docker:
docker run -p 8000:8000 --rm --init -it mcr.microsoft.com/playwright:v1.50.0-jammy /bin/sh -c "npx -y playwright@v1.50.0 run-server --port 8000 --host 0.0.0.0 --mode extension"
When I try to run the Official Example using browser, err := pw.Chromium.Connect("ws://127.0.0.1:8000/"), an error occurs:
browser, err := pw.Chromium.Connect("ws://127.0.0.1:8000/")
could not launch browser: playwright: Cannot read properties of undefined (reading 'launch')
But when running the Official Example using browser, err := pw.Chromium.Launch(), everything works fine.
browser, err := pw.Chromium.Launch()
Here's the complete code:
package main import ( "fmt" "log" "github.com/playwright-community/playwright-go" ) func main() { pw, err := playwright.Run() if err != nil { log.Fatalf("could not start playwright: %v", err) } browser, err := pw.Chromium.Connect("ws://127.0.0.1:8000/") if err != nil { log.Fatalf("could not launch browser: %v", err) } page, err := browser.NewPage() if err != nil { log.Fatalf("could not create page: %v", err) } if _, err = page.Goto("https://news.ycombinator.com"); err != nil { log.Fatalf("could not goto: %v", err) } entries, err := page.Locator(".athing").All() if err != nil { log.Fatalf("could not get entries: %v", err) } for i, entry := range entries { title, err := entry.Locator("td.title > span > a").TextContent() if err != nil { log.Fatalf("could not get text content: %v", err) } fmt.Printf("%d: %s\n", i+1, title) } if err = browser.Close(); err != nil { log.Fatalf("could not close browser: %v", err) } if err = pw.Stop(); err != nil { log.Fatalf("could not stop Playwright: %v", err) } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm running a playwright server locally using Docker:
When I try to run the Official Example using
browser, err := pw.Chromium.Connect("ws://127.0.0.1:8000/")
, an error occurs:But when running the Official Example using
browser, err := pw.Chromium.Launch()
, everything works fine.Here's the complete code:
The text was updated successfully, but these errors were encountered: