python code:--
import selenium.webdriver.support.ui as ui
from selenium.webdriver.common.keys import Keys
from time import sleep
from selenium import webdriver
browser = webdriver.Chrome('driver/chromedriver.exe')
browser.get('https://www.google.com')
main_window = browser.current_window_handle
a = browser.find_element_by_xpath("//input[@name='q']")
a.send_keys(Keys.CONTROL + 't')
it not showing any error and not opening any Tab.
the code "a.send_keys(Keys.CONTROL + 't')" might not working (fix it or any alternative sol.)