Yad Smood
Yad Smood
For now, I don't have any better idea than yours. Looking forward to your code.
How about use the cdp directly? Look at the code `client.Event()`: https://github.com/go-rod/rod/blob/3557c232027e27173c8d09fd08579bfe057e5e59/lib/cdp/example_test.go#L14-L44
You don't have to marshal it manually, you can use the proto lib: ```go // Package main ... package main import ( "fmt" "github.com/go-rod/rod/lib/cdp" "github.com/go-rod/rod/lib/launcher" "github.com/go-rod/rod/lib/proto" "github.com/go-rod/rod/lib/utils" ) func main()...
You can use the `FormatArgs` to debug which cli arg is affecting it: https://github.com/go-rod/rod/blob/ab8740f76fca9fbcc138abab51afaead37f38e4a/lib/launcher/example_test.go#L26-L46
Could you try the v0.115.0
Works fine to me: ```go package main import ( "github.com/go-rod/rod" "github.com/go-rod/rod/lib/utils" ) func main() { browser := rod.New().NoDefaultDevice().MustConnect() page := browser.MustPage("https://google.com") page.MustElement(".gb_Ld").MustClick() // Click login utils.Pause() } ```
Still works fine to me after enter the mail address.
Puppeteer has the same issue: https://github.com/berstend/puppeteer-extra/issues/822 I think it's more like an upstream issue of chromium or the google website's false positive. Rod can't do much about it. Maybe remove...
Per the ISO 32000 standard for PDF, the page dimension limit is 14,400 PDF units in each direction. A PDF unit is 1/72 of an inch so the limit equates...
How to reproduce your issue? Could you provide reproducible code?