public void TripPlannerSwitchDirections(string startPoint, string endPoint)
        {
            TripPlannerPage tripPlannerPage = new TripPlannerPage(driver);

            tripPlannerPage.GoToTripPlannerURL();
            tripPlannerPage.EnterFromDestinationText(startPoint);
            tripPlannerPage.EnterToDestinationText(endPoint);
            //Thread.Sleep(2000);
            tripPlannerPage.ClickChangeDirectionButton();
            //Thread.Sleep(2000);
            tripPlannerPage.ClickPlanMyTripButton();
        }