Example #1
2
        static void Main(string[] args)
        {
            IWebDriver driver = new EdgeDriver(IE_DRIVER_PATH);

            driver.Navigate().GoToUrl("http://www.bing.com");

            IWebElement searchInput = driver.FindElement(By.Id("sb_form_q"));
            searchInput.SendKeys("Hello World!");
            searchInput.SendKeys(Keys.Enter);

            driver.Close();
        }