|
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, |
Answered by
ariefsn
Feb 25, 2025
Replies: 1 comment
|
Seems the browser issue, |
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.