FRIKIdelTO

Results 8 comments of FRIKIdelTO

> Hey man, I had issues with zombie processes in the past while using uc and thought it was an issue with the library, but actually It was me not...

I have the same problem and after trying what you mentioned, the problem is still there. I don't know what to do anymore... I've even tried use_subprocess=False and it doesn't...

> @FRIKIdelTO Did you tried [#1507 (comment)](https://github.com/ultrafunkamsterdam/undetected-chromedriver/issues/1507#issuecomment-1694627996) ? I just tried it now and the problem is still there

Finally solved with this function (copy/paste and modified from seleniumbase): ``` def quit_driver(driver): try: os.kill(driver.browser_pid, 15) if "linux" in sys.platform: os.waitpid(driver.browser_pid, 0) time.sleep(0.02) else: time.sleep(0.04) except: pass if hasattr(driver, "service")...

For about a month now, Google has detected it. Let's see if there is luck and the developers manage to avoid it

> Is there any known workaround ? @FRIKIdelTO not that I know

solved with this function (copy/paste and modified from seleniumbase): def quit_driver(driver): try: os.kill(driver.browser_pid, 15) if "linux" in sys.platform: os.waitpid(driver.browser_pid, 0) time.sleep(0.02) else: time.sleep(0.04) except: pass if hasattr(driver, "service") and getattr(driver.service,...