Heraldo

Results 68 comments of Heraldo

@mhmehdi paste the error message here... I use that Dockerfile and have no problems.

this ``` - if not options.debugger_address: - options.debugger_address = debug_addr + #if not options.debugger_address: + # options.debugger_address = debug_addr ``` makes chrome subprocess started by UC useless, the porpuse of...

@KacperKubara I think you missed the point. UC v2 starts a chrome instance throught `subprocess.Popen()` for chromedriver to connect to it throught `options.debugger_address`. If you don't set debugger address, chromedriver...

I run it headless mode, but it seems you want to use virtual displays. As I suspected the problem was not in docker, subprocess is not an issue since docker...

@KacperKubara pass `options.add_argument("--no-sandbox")` because UC v2 sets that option only for headless mode (wonder why). I tried but could not find a way to run chrome with sandbox enabled, it's...

@jeromegallego68 Google does not builds Chrome for ARM64, except for Android phones. All you can do is build chromium for ARM64, you can find it in Ubuntu repositories as `chromium-browser`...

@Ceiridge Great. So what means `orig`, `patch`, `sig` and `sigOffset` attributes of `PatchData` tag? ```xml 0x22 4831C0C3 ```

This slowdown is present on latest versions of pyOpenSSL?

What's special to asyncio code here? The certificate handling is exactly the same as the sync version, what changes with asyncio is that BIOs are used instead of sockets for...