19

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

Here's my code:

from selenium import webdriver  
from selenium.webdriver.common.keys import Keys

browser = webdriver.Firefox()
browser.get('https://www.google.com')
main_window = browser.current_window_handle
# open new tab
browser.find_element_by_tag_name('body').send_keys(Keys.CONTROL + 't')
browser.get('https://www.yahoo.com')

# close tab
browser.find_element_by_tag_name('body').send_keys(Keys.CONTROL + 'w')

How to achieve the same on a Mac? Based on this comment one should use browser.find_element_by_tag_name('body').send_keys(Keys.COMMAND + 't') to open a new tab but I don't have a Mac to test it and what about the equivalent of Ctrl-w?

Thanks!

Ratmir Asanov
  • 6,237
  • 5
  • 26
  • 40
user2314737
  • 27,088
  • 20
  • 102
  • 114

7 Answers7

14

open a new tab:

browser.get('http://www.google.com')

close a tab:

browser.close()

switch to a tab:

browser.swith_to_window(window_name)
alien_frog
  • 598
  • 5
  • 10
  • +1 for browser.close(); I presumed this was to do trash collection on the browser object and did not realize it was a method for closing tabs – Steve Byrne Sep 28 '17 at 20:50
  • @StevenByrne Actually it will cause memory leak if you do not quit the process manually(for example, in python `sys.exit(0)`) after loop runs, no matter `driver.close()` or `driver.quit()`. – alien_frog Oct 09 '17 at 06:46
  • Sorry my bad. `driver.quit()` will prevent memory leak. And when you have only 1 tab, `driver.close()` is equal to `driver.quit()`. – alien_frog Oct 09 '17 at 06:56
13

There's nothing easier and clearer than just running JavaScript.

Open new tab: driver.execute_script("window.open('');")

J0e3gan
  • 8,740
  • 10
  • 53
  • 80
Bek
  • 170
  • 2
  • 3
  • 2
    Hi thanks very much! But your command opens a new window, not a new tab. If you show me how to open a new tab with JS I'll accept your answer. – user2314737 Jan 16 '15 at 11:01
12

You can choose which window you want to close:

window_name = browser.window_handles[0]

Switch window:

browser.switch_to.window(window_name=window_name)

Then close it:

browser.close()
JayHung
  • 159
  • 1
  • 6
7

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]).

mousetail
  • 7,009
  • 4
  • 25
  • 45
3mrsh
  • 83
  • 1
  • 7
2

Open new tab:

browser.execute_script("window.open('"+your url+"', '_blank')")

Switch to new tab:

browser.switch_to.window(windows[1])
Gerry
  • 10,337
  • 3
  • 31
  • 40
ZijiG
  • 21
  • 1
0

IMHO all the above answers didn't exactly solve the original problem of closing a tab in a window and not closing the entire window or opening a blank tab.

my solution:

browser.switch_to.window("tab1") #change the tab1 to the id of the tab you want to close
browser.execute_script("window.close('','_parent','');")
rram12
  • 61
  • 6
0

This worked for me. When I was doing driver.close and not switching back to old window, the new tab was not closing [I am still not able to figure out why].

driver.execute_script("window.open('');") # Open an empty tab
driver.switch_to.window(driver.window_handles[1]) # Switch to that tab (given you only have two tabs)
driver.get(new_tab_url) # Open url in the new tab
# Do your stuff here###

####################### 
driver.close() # close the new tab
driver.switch_to.window(driver.window_handles[0]) #This step is also important, go back to your old tab (given you have only two tabs)
Anmol Deep
  • 463
  • 1
  • 5
  • 16