Open and close new tab with Selenium WebDriver in OS X

前端 未结 5 533
北恋
北恋 2021-01-11 16:23

I\'m using the Firefox Webdriver in Python 2.7 on Windows to simulate opening (Ctrl+t) and closing (Ctrl + w) a new tab.

5条回答
  •  离开以前
    2021-01-11 16:47

    Just to combine the answers above for someone still curious. The below is based on Python 2.7 and a driver in Chrome.

    Open new tab by: driver.execute_script("window.open("+URL+", '__blank__');") where URL is a string such as "http://www.google.com".

    Close tab by: driver.close() [Note, this also doubles as driver.quit() when you only have 1 tab open].

    Navigate between tabs by: driver.switch_to_window(driver.window_handles[0]) and driver.switch_to_window(driver.window_handles[1]).

提交回复
热议问题