Exemple #1
0
 /// <summary>
 /// Clicks the element and returns a new page
 /// </summary>
 /// <typeparam name="T">Type of page to return</typeparam>
 /// <returns>Page of Type T</returns>
 public T Click <T>(int timeout = 20)
 {
     Click(timeout);
     return(DriverSetup.getInstance().GetPage <T>(Driver));
 }