Michael Mintz
Michael Mintz
> On CDP mode, the page is loading forever Not seeing that. It's working for me both locally and in GitHub Actions. If you're using a specific site that has...
> upd: I tested proxies from several services. Some worked, some didn't. Maybe the problem is that the services need to do something on their side on the servers... I...
> Can I use specific version of chrome in uc mode? @nikita2122 It'll use the version of Chrome that's installed on your system. Note that proxy auth doesn't take effect...
> I’d like to work on this — I’ll attempt a fix that gracefully falls back if --load-extension is unsupported by the Chrome version. I’ll open a PR soon. There's...
For custom extensions in UC Mode / CDP Mode after Chrome 142+, you'll need to use a custom chromium browser, such as Opera, Brave, or raw chromium. (Edge works too...
To load extensions manually, go to the `chrome://extensions/` page for that browser, switch on `Developer mode`, and click `Load unpacked` to manually load the extension that you want.
Change `HeadlessChrome` to just `Chrome` in the user-agent, and things will work.
Until the maintainer of `nodriver` returns, I have a working fix in https://github.com/seleniumbase/SeleniumBase. (The [CDP Mode](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/cdp_mode/ReadMe.md) inside there includes a nodriver fork with fixes and improvements.) Here's the updated script:...
Simple fix: (Move the window off-screen) ```python options.add_argument("--window-position=-2400,-2400") ``` I added that info to a Stack Overflow solution: https://stackoverflow.com/a/78999088/7058266
Closing this in favor of https://github.com/seleniumbase/SeleniumBase/issues/4079.