public void AppLaunchesTwo()
        {
            var homePage = PageResolver.HomePage();

            homePage.ViewLocations();

            var locationPage = PageResolver.LocationPage();

            locationPage.SelectLoaction("Xamarin Denmark APS");
        }
        public void GivenIAmOnTheLocationsPage()
        {
            var platform = Current.Platform;

            PageResolver.HomePage().ViewLocations();
        }
 public void AppLaunches()
 {
     PageResolver.HomePage()
     .ViewLocations()
     .SelectLoaction("Xamarin Denmark APS");
 }