Discord registration, Driver vs BaseCase vs SB #2752
-
i am testing a script using the Driver manager as direct import with discord registration. self.driver = Driver(uc=True, proxy=self.proxy, headless=headless) i have also tried with Would trying SB context or BaseCase syntax worth trying? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
This worked for me: (Loaded the page normally) from seleniumbase import SB
with SB(uc=True, test=True, incognito=True) as sb:
url = "https://discord.com/register"
sb.driver.uc_open_with_reconnect(url, 5)
breakpoint() |
Beta Was this translation helpful? Give feedback.
This worked for me: (Loaded the page normally)