Is there a RELIABLE way of opening new browser tab with Selenium WebDriver? -


i know there ways of opening new tab simulating ctrl+t key combination, not reliable. have sporadic test automation failures

    webelement element = m_webdriver.findelement(by.tagname("body"));     element.sendkeys(keys.control + "t"); 

is there better way of doing (more reliable)?