Closed praveenyadav3011 closed 3 weeks ago
Exactly why I came here as well. Haven't been working since yesterday I think.
Also all other functions stopped working, this code was working for me until 2 days ago:
def login(self): """ Automate login to Keymaster using SeleniumBase. Handle captcha if possible or use alternative methods. """ self.driver = Driver(uc=True) # Use undetected-chromedriver mode # UC Mode for avoiding detection try: url = "https://keymaster.fivem.net/login?return_url=/assets" self.driver.open(url)
# Handle the reCAPTCHA automatically using built-in methods
self.driver.uc_gui_click_captcha()
input("Press Enter to continue after handling the reCAPTCHA...")
# Wait for CAPTCHA processing
self.driver.sleep(2)
# Click the "Sign in" button
self.driver.click('a[href^="https://forum.cfx.re/session/sso_provider"]')
# Wait for any further processing to complete
self.driver.sleep(2)
# Input the email or username
self.driver.type('#login-account-name', self.username)
Now it doesn't see no captcha, no sso provider button no login button
Exactly why I came here as well. Haven't been working since yesterday I think.
Also all other functions stopped working, this code was working for me until 2 days ago:
def login(self): """ Automate login to Keymaster using SeleniumBase. Handle captcha if possible or use alternative methods. """ self.driver = Driver(uc=True) # Use undetected-chromedriver mode # UC Mode for avoiding detection try: url = "https://keymaster.fivem.net/login?return_url=/assets" self.driver.open(url)
# Handle the reCAPTCHA automatically using built-in methods self.driver.uc_gui_click_captcha() input("Press Enter to continue after handling the reCAPTCHA...") # Wait for CAPTCHA processing self.driver.sleep(2) # Click the "Sign in" button self.driver.click('a[href^="https://forum.cfx.re/session/sso_provider"]') # Wait for any further processing to complete self.driver.sleep(2) # Input the email or username self.driver.type('#login-account-name', self.username) Now it doesn't see no captcha, no sso provider button no login button
i am closing this, it is working
raw_gui_click.py from example not working, it stuck on