-
Hi, url := "https://www.upwork.com/freelancers/" + userID
if _, err := page.Goto(url, playwright.PageGotoOptions{
WaitUntil: playwright.WaitUntilStateNetworkidle,
}); err != nil {
return nil, err
}
title, _ := page.Title()
// here the `title` result is `Just a moment...` Version: 0.5001.0 Thanks, |
Beta Was this translation helpful? Give feedback.
Answered by
ariefsn
Feb 25, 2025
Replies: 1 comment
-
Seems the browser issue, |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ariefsn
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Seems the browser issue,
Happened with Chromium.
Changed to Firefox solve the problem.