Replies: 2 comments 7 replies
-
Hi, |
Beta Was this translation helpful? Give feedback.
-
hello, in windows 10 I had the same problem about the phantom processes and I managed to solve it by using pyautogui to close the browser just before applying the driver.quit(), this way the browser is completely closed just before the driver.quit() and leaves no trace in the task manager, this solution was effective for me. I hope this helps you.
You can adjust the duration of this action to make it more instantaneous |
Beta Was this translation helpful? Give feedback.
-
Hello,
I use this way:
` chrome_options = uc.ChromeOptions()
chrome_options.add_argument("--disable-extensions")
chrome_options.add_argument("--disable-popup-blocking")
chrome_options.add_experimental_option("prefs", {
"credentials_enable_service": False,
"profile.password_manager_enabled": False
})
driver = uc.Chrome(options=chrome_options)`
but when I would like to driver.quit() it closes the window but in the task manager I still see the Crome running my CPU
is there any solution for it?
thank you in advance!
Beta Was this translation helpful? Give feedback.
All reactions