// This will open the new tab
driver.switchTo().newWindow(WindowType.TAB);
// This will open the new window
driver.switchTo().newWindow(WindowType.WINDOW);
String clickl = Keys.chord(Keys.CONTROL,Keys.ENTER);
driver.findElement(By.xpath("//*[text()='Terms of Use']")). sendKeys(clickl);