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
func handleResponse(res playwright.Response) { statusCode := res.Status() url := res.URL() fmt.Printf("Response URL: %s\n", url) fmt.Printf("Status Code: %d\n", statusCode) var data jsonResponse body, err := res.Body() if err != nil { fmt.Println("Error getting body:", err) return } err = utils.ConvertStruct(body, &data) if err != nil { fmt.Println("Error parsing JSON:", err) return } fmt.Println("Parsed JSON Data:", data) } page.OnResponse(handleResponse)
Executing until the step of reading the body will enter a false death state, and the subsequent code cannot be executed
The text was updated successfully, but these errors were encountered:
Handle it in another gorountine
func handleResponse(res playwright.Response) { go func() { ... }() } }
or refer to this
Sorry, something went wrong.
No branches or pull requests
Executing until the step of reading the body will enter a false death state, and the subsequent code cannot be executed
The text was updated successfully, but these errors were encountered: