I know there are ways of opening new tab by simulating Ctrl+T key combination, but it is not very reliable. We have sporadic test automation failures
WebElement element = m_webDriver.findElement(By.tagName("body"));
element.sendKeys(Keys.CONTROL + "t");
Is there a better way of doing that (more reliable)?