Skip to content

Issue with Tab Management in SeleniumBase #2329

Answered by mdmintz
benfrankie asked this question in Q&A
Discussion options

You must be logged in to vote

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:

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_n…

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@benfrankie
Comment options

@mdmintz
Comment options

Answer selected by mdmintz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants