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

            homePage.ViewLocations();

            var locationPage = PageResolver.LocationPage();

            locationPage.SelectLoaction("Xamarin Denmark APS");
        }
        public void ThenTheResultShouldBe()
        {
            PageResolver.InformationPage();

            //DO SOME ASSERT
        }
 public void WhenIPressAdd(string location)
 {
     PageResolver.LocationPage().SelectLoaction(location);
 }
        public void GivenIAmOnTheLocationsPage()
        {
            var platform = Current.Platform;

            PageResolver.HomePage().ViewLocations();
        }
 public void AppLaunches()
 {
     PageResolver.HomePage()
     .ViewLocations()
     .SelectLoaction("Xamarin Denmark APS");
 }
 public ILocationsPage ViewLocations()
 {
     AppManager.App.Tap(e => e.Marked("Locations"));
     return(PageResolver.LocationPage());
 }