public bool check_Homepage()
 {
     common = new CommonFunctionalities();
     invoke_Driver();
     common.go_to("https://www.expedia.com");
     if (common.check_title("Expedia Travel: Search Hotels, Cheap Flights, Car Rentals & Vacations"))
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
 public bool check_HomePage()
 {
     Common = new CommonFunctionalities();
     invoke_Driver();
     Common.go_to("http://automationpractice.com/index.php");
     if (Common.check_title("My Store"))
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }