Exemplo n.º 1
0
 private void LogOn()
 {
     driver.Navigate().GoToUrl(baseUrl);
     driver.FindElement(By.Id("txtUser")).SendKeys("guest");
     driver.FindElement(By.Id("txtPsw")).SendKeys("guest");
     driver.FindElement(By.Id("cmdLogin")).Click();
     Assert.AreEqual(loginUrl, driver.Url, "Не удалось пройти авторизацию");
     MenuNavigation.get(driver).FullExtentButton().GotoCoordsButton().IdentificationButton().MagnifyButton().MoveButton().RuleButton().SelectionButton().ZoomArea();
 }