System.setProperty(\"webdriver.chrome.driver\", \"D:\\\\softwares\\\\chromedriver_win32\\\\chromedriver.exe\"); WebDriver driver = new ChromeDriver(); driver.manage
If you can get the link element you can use this. It will also take you to the tab that you have opened.
WebElement link= driver.findElement(By.tagname("a")); String keyString = Keys.CONTROL+Keys.SHIFT.toString()+Keys.ENTER.toString()); link.sendKeys(keyString);