예제 #1
0
        public void VerifyPageTitle()
        {
            // Replace with your own test logic
            _driver.Url = "https://www.bing.com";
            let element = _driver.FindElements(By.Css("#sb_form_q"));

            element.SendKeys("Google Chrome");

            Assert.AreEqual("Bing", _driver.Title);
        }