static void Main() { IWebDriver driver = new ChromeDriver(); driver.Navigate().GoToUrl(\"http://google.com\"); IWebElement body = driver.FindElement(By.T
If your on a mac, use Keys.Command instead of Keys.Control:
body.SendKeys(Keys.Command + "t");