-
-
Notifications
You must be signed in to change notification settings - Fork 174
New issue
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
response.Body() cant‘run in the page.OnResponse(HandleResponse) callback function #391
Comments
Please provide verified reproducible code in markdown code block format. |
|
pls use goroutine to get response body for now: func HandleResponse(response playwright.Response) {
go func() {
fmt.Println(response.URL())
body, err := response.Body()
if err == nil {
fmt.Println(body)
}
}()
} |
Why the event listener handle is blocking inside OnResponse's context? I'm just curious because Naturally, I expected this to be handled how it's handled in Node. Please correct me if I'm wrong, but shouldn't handlers run in a Go routine by default to make them non-blocking? |
Playwright-go only uses a synchronized EventEmitter. Otherwise there is a lot of data race and event synchronization to deal with. |
when use response.Body() in the page.OnResponse(HandleResponse) callback function, it will be stop running
like this:
The text was updated successfully, but these errors were encountered: