I want to open a duplicate TAB through ctrl+shift+K in selenium python with same content.
is it possible, please help me with this?
I tried below but did not work
webdriver.ActionChains(driver).key_down(Keys.CONTROL).key_down(Keys.SHIFT).send_keys(‘k’).key_up(Keys.CONTROL).key_up(Keys.SHIFT).perform()