I have this super simple code I'm trying to run on ChromeDriver but it's not working. The Java equivalent works fine. I want to open a new tab but any working way to send multiple keys would be great.
driver.get("https://www.google.com")
action = ActionChains(driver)
action.key_down(Keys.CONTROL).send_keys("t").key_up(Keys.CONTROL).perform()
Thanks in advance
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…