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

            homePage.ViewLocations();

            var locationPage = PageResolver.LocationPage();

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