-
Need to use the uc_gui_click_captcha function, but making the browser headless breaks it, but if I don't use the headless mode new windows that are opening are not letting me use my pc. So is there a way maybe not hide windows completely, but just open it, so that it doesn't cover any other windows? |
Beta Was this translation helpful? Give feedback.
Answered by
mdmintz
Mar 30, 2025
Replies: 1 comment
-
uc_gui_click_captcha() uses PyAutoGUI to move the mouse and click, so the browser can’t be headless, and the browser window needs to be on top, so you can’t really be multitasking on your computer while running scripts that call that. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mdmintz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
uc_gui_click_captcha() uses PyAutoGUI to move the mouse and click, so the browser can’t be headless, and the browser window needs to be on top, so you can’t really be multitasking on your computer while running scripts that call that.