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
Rod Version: v0.116.2
I'm running 10 threads simultaneously, and I encounter a freeze when using Mouse.MustScroll(0, 100). Is this a bug? How can I resolve it? Thank you.
I've tried using cancel, but it didn't work. Here's my code:
page := rod.New().MustConnect().MustPage() ctx, cancel := context.WithCancel(context.Background()) pageWithCancel := page.Context(ctx) go func() { time.Sleep(2 * time.Second) cancel() }() fmt.Println("[Start] mouse scroll") pageWithCancel.Mouse.MustScroll(0, 100) fmt.Println("[End] mouse scroll")
The text was updated successfully, but these errors were encountered:
maybe we can use JS function instead
Sorry, something went wrong.
No branches or pull requests
Rod Version: v0.116.2
I'm running 10 threads simultaneously, and I encounter a freeze when using Mouse.MustScroll(0, 100). Is this a bug? How can I resolve it? Thank you.
I've tried using cancel, but it didn't work. Here's my code:
The text was updated successfully, but these errors were encountered: