SeleniumBase
SeleniumBase copied to clipboard
Python APIs for web automation, testing, and bypassing bot-detection.
"ChatGPT in GitHub Actions + Playwright vs SeleniumBase" is now on YouTube: https://www.youtube.com/watch?v=4pLmqXAk6Rg
"Unlimited Free Web-Scraping with GitHub Actions" is now on YouTube: https://www.youtube.com/watch?v=gEZhTfaIxHQ
Related to #3167 and #3402. This will have the same effect as: ```python from seleniumbase import SB, BaseCase sb: BaseCase with SB(...) as sb: ... ``` without having to explicitly...
Using: ```python from seleniumbase import SB with SB(uc=True, incognito=True, locale_code="en_us") as sb: # Set timezone and geolocation sb.activate_cdp_mode("https://www.example.com", tzone="America/New_York", geoloc=(40.7128, -74.0060)) # Now test JavaScript date formatting date_str = sb.execute_script("return...