Skip to content

Releases: seleniumbase/SeleniumBase

4.41.9 - CDP Mode: Patch 57

25 Sep 07:06
a014dc9
Compare
Choose a tag to compare

CDP Mode: Patch 57

One of the key improvements is being able to click through multiple CAPTCHAs at nearly the same time.
See the following example: SeleniumBase/examples/cdp_mode/raw_multi_captcha.py, which spins up multiple windows via ThreadPoolExecutor, and then solves mutliple CAPTCHAs.

from concurrent.futures import ThreadPoolExecutor
from random import randint
from seleniumbase import decorators
from seleniumbase import sb_cdp

def main(url):
    sb = sb_cdp.Chrome(url, lang="en")
    sb.set_window_rect(randint(4, 680), randint(8, 380), 840, 520)
    sb.sleep(2.2)
    sb.gui_click_captcha()
    sb.sleep(2)
    sb.driver.quit()

if __name__ == "__main__":
    urls = ["https://seleniumbase.io/apps/turnstile" for i in range(5)]
    with decorators.print_runtime("raw_multi_captcha.py"):
        with ThreadPoolExecutor(max_workers=len(urls)) as executor:
            for url in urls:
                executor.submit(main, url)

What's Changed

Full Changelog: v4.41.8...v4.41.9

4.41.8 - CDP Mode: Patch 56

20 Sep 17:34
a06d90d
Compare
Choose a tag to compare

CDP Mode: Patch 56

What's Changed

Full Changelog: v4.41.7...v4.41.8

4.41.7 - More PDF improvements

18 Sep 21:22
677b2b0
Compare
Choose a tag to compare

4.41.6 - PDF improvements

13 Sep 19:01
e5dd587
Compare
Choose a tag to compare

4.41.5 - Fix "pytest --help"

08 Sep 13:08
ad3eaba
Compare
Choose a tag to compare

Fix "pytest --help"

What's Changed

Full Changelog: v4.41.4...v4.41.5

4.41.4 - Add more select options for CDP Mode

04 Sep 19:08
d788616
Compare
Choose a tag to compare

Add more select options for CDP Mode

What's Changed

Full Changelog: v4.41.3...v4.41.4

4.41.3 - Passwordless proxy auth

29 Aug 06:00
bdc8521
Compare
Choose a tag to compare

Allow proxy auth without password

What's Changed

Full Changelog: v4.41.2...v4.41.3

4.41.2 - CDP Mode: Patch 55

27 Aug 02:27
b878608
Compare
Choose a tag to compare

4.41.1 - CDP Mode: Patch 54

17 Aug 14:05
a0ae330
Compare
Choose a tag to compare

CDP Mode: Patch 54

What's Changed

Full Changelog: v4.41.0...v4.41.1

4.41.0 - Multiple dependency updates

14 Aug 04:19
83ade41
Compare
Choose a tag to compare

Multiple dependency updates

What's Changed

Full Changelog: v4.40.8...v4.41.0