eem1r

Results 2 comments of eem1r

https://stackoverflow.com/questions/76582307/i-am-using-undetected-chromedriver I'm a beginner in Python, but the page loads without any problems in Seleniumbase. I'm thinking of converting my projects to seleniumbase.

import undetected_chromedriver as uc import time options = uc.ChromeOptions options.headless = False driver = uc.Chrome() URL = 'https://nowsecure.nl' driver.execute_script(f"window.open('{URL}', '_blank');") driver.close() time.sleep(3) driver.switch_to.window(driver.window_handles[0]) time.sleep(10) When I try it with such...