Example #1
0
 public void Login_Telerik_Telerik_Provider_ElementsFactory()
 {
     LoginPage loginPage = new LoginPage();
     loginPage.Navigate(this.Browser);
     loginPage.LoginUser(this.Browser);
     YourAccountMainPage mainPage = new YourAccountMainPage();
     mainPage.WaitForYourAccountNameLink(this.Browser);
 }      
        public void WaitForYourAccountNameLink(IWebDriver browser)
        {
            var yourAccountMainPage = new YourAccountMainPage();

            PageFactory.InitElements(browser, yourAccountMainPage);
        }
 public void WaitForYourAccountNameLink(IWebDriver browser)
 {
     var yourAccountMainPage = new YourAccountMainPage();
     PageFactory.InitElements(browser, yourAccountMainPage);
 }