You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 30, 2025. It is now read-only.
A data race can occur when two tests perform an action on the same page
but under two different threads. It occurs in ExecutionContext with its
injectedScript parameter. Since we call
ExecutionContext.getInjectedScript() in ElementHandle.evalWithScript(),
it can be called in parallel from different goroutines, so a mutex is
a good fix for this.
Closes: #426
0 commit comments