Issue with Tab Management in SeleniumBase #2329
-
Hi, I've encountered a behavior in SeleniumBase that doesn't occur with regular Selenium. When using SeleniumBase to open a new tab and perform actions on the same domain, the script unexpectedly switches back to the original tab. This issue doesn't arise when using plain Selenium. Here's a brief overview:
Could this be related to SeleniumBase's internal handling of tabs, especially when the same domain is accessed in multiple tabs? What's the solution here while using UC mode? Here's a snippet of the test code that illustrates the issue: driver.get("https://www.reddit.com/")
main_window_handle = driver.current_window_handle
# Open new tab and switch to it
driver.execute_script("window.open('');")
new_tab_handle = [handle for handle in driver.window_handles if handle != main_window_handle][0]
driver.switch_to.window(new_tab_handle)
# Attempt to perform actions in the new tab
driver.get("https://www.reddit.com/")
# Intended actions here
smooth_random_scroll(driver) This works as expected for some websites (like "https://yahoo.com/"), but not for others (like "https://www.reddit.com/"). Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Even regular
Tab-switching works differently in UC Mode. (The standard SeleniumBase formats have additional methods for that.) Here's an example of that: from seleniumbase import SB
with SB(uc=True) as sb:
sb.driver.uc_open_with_tab("data:text/html,<h1>Page A</h1>")
sb.assert_text("Page A")
sb.open_new_window()
sb.driver.uc_open_with_tab("data:text/html,<h1>Page B</h1>")
sb.assert_text("Page B")
sb.switch_to_window(0)
sb.assert_text("Page A")
sb.assert_text_not_visible("Page B")
sb.switch_to_window(1)
sb.assert_text("Page B")
sb.assert_text_not_visible("Page A") If you need more than one tab open, first call Also note that having more than one tab open at a time will likely lead to Selenium detection, so you're probably better off having only one tab/window open at a time for tests. |
Beta Was this translation helpful? Give feedback.
Even regular
undetected-chromedriver
didn't let you use the standard tab-switching methods as is:Tab-switching works differently in UC Mode. (The standard SeleniumBase formats have additional methods for that.)
Here's an example of that: