/// <summary>
 /// This method clicks the GoToDashboard Btn present on HA prompt screen
 /// </summary>
 public void GoToDashboard()
 {
     Thread.Sleep(3000);
     if (SeleniumKeywords.GetPageTitle().Contains("HA Prompt"))
     {
         SeleniumKeywords.Click(pageName, "dashboardbtn");
     }
 }
Exemple #2
0
 /// <summary>
 /// Click user agreement Continue button
 /// </summary>
 public void ClickUAContinue()
 {
     Thread.Sleep(3000);
     if (SeleniumKeywords.GetPageTitle().Contains("Agreement"))
     {
         SeleniumKeywords.Click(pageName, "uacheckbx");
         SeleniumKeywords.Click(pageName, "uacontinuebtn");
     }
 }
Exemple #3
0
 /// <summary>
 /// get title of all device login page
 /// </summary>
 /// <returns></returns>
 private string GetTitleofLoginPage()
 {
     return(SeleniumKeywords.GetPageTitle());
 }
 private string getHomePageTitle()
 {
     return(SeleniumKeywords.GetPageTitle());
 }