Use PyAutoGUI to click the CAPTCHA
(self)
| 2423 | self.__click_captcha(use_cdp=True) |
| 2424 | |
| 2425 | def gui_click_captcha(self): |
| 2426 | """Use PyAutoGUI to click the CAPTCHA""" |
| 2427 | self.__click_captcha(use_cdp=False) |
| 2428 | |
| 2429 | def __click_captcha(self, use_cdp=False): |
| 2430 | """Uses PyAutoGUI unless use_cdp == True""" |
no test coverage detected