Michael Mintz

Results 131 comments of Michael Mintz
trafficstars

> Seems like sb.uc_gui_click_captcha() working correctly but sb.uc_gui_handle_cf() keeps crashing, can you check please @mdmintz Looks like it. In the meantime, people should use `sb.uc_gui_click_captcha()` if they can, which works...

Updated title: "UC Mode users should upgrade to `4.30.8` (or newer if available)"

These scripts are all working for me: ```python from seleniumbase import SB with SB(uc=True, test=True) as sb: url = "https://gitlab.com/users/sign_in" sb.uc_open_with_reconnect(url, 4) sb.uc_gui_click_captcha() # Only if needed sb.assert_element('label[for="user_login"]') sb.assert_element('input[data-testid*="username"]') sb.assert_element('input[data-testid*="password"]')...

Things are working for me right now in GitHub Actions: https://github.com/mdmintz/undetected-testing/actions/runs/10838173166/job/30075795632 #### * Here's the script that was run: ```python from seleniumbase import SB with SB(uc=True, test=True, rtf=True) as sb:...

@ProtocolNebula It's because you can't go directly to `https://www.xtremetop100.com/in-post.php?site=1132357179` in the browser because it's tied to the previous form action. And because there's another CAPTCHA on the previous page (not...

@ProtocolNebula Note that you can print and or reuse coordinates that you receive for later. Eg: ```python from seleniumbase import SB from seleniumbase import config as sb_config with SB(uc=True, test=True,...

---- ---- @ebsawyer This script works in all the environments: ```python from seleniumbase import SB from seleniumbase import config as sb_config with SB(uc=True, test=True, locale_code="en") as sb: url = "https://www.indeed.com/jobs?q=%27team+member%27&l=New+York%2C+NY&sort=date&fromage=1&filter=0"...

---- ---- @ebsawyer You have to reconnect before you can perform actions again. Eg. `sb.reconnect(4)` waits 4 seconds, then reconnects the `driver` to the `browser`. You have to wait a...

No matter the URL, use something like this for bypassing CF CAPTCHAs: ```python from seleniumbase import SB from seleniumbase import config as sb_config with SB(uc=True, test=True, locale_code="en") as sb: url...

There will be an extra page refresh because Selenium gets detected when calculating the CAPTCHA coordinates. Adjust your script as needed in https://github.com/seleniumbase/SeleniumBase/issues/3130#issuecomment-2348840356.