In selenium 3.141.59 I am trying to open a new Tab using
Actions action = new Actions(driver);
action.keyDown(Keys.CONTROL).sendKeys(Keys.TAB).build().perform();
and
driver.findElement(By.cssSelector("body")).sendKeys(Keys.CONTROL +"t");
I'm not able to open new Tab