コード例 #1
0
        public void AppLaunchesTwo()
        {
            var homePage = PageResolver.HomePage();

            homePage.ViewLocations();

            var locationPage = PageResolver.LocationPage();

            locationPage.SelectLoaction("Xamarin Denmark APS");
        }
コード例 #2
0
        public void ThenTheResultShouldBe()
        {
            PageResolver.InformationPage();

            //DO SOME ASSERT
        }
コード例 #3
0
 public void WhenIPressAdd(string location)
 {
     PageResolver.LocationPage().SelectLoaction(location);
 }
コード例 #4
0
        public void GivenIAmOnTheLocationsPage()
        {
            var platform = Current.Platform;

            PageResolver.HomePage().ViewLocations();
        }
コード例 #5
0
 public void AppLaunches()
 {
     PageResolver.HomePage()
     .ViewLocations()
     .SelectLoaction("Xamarin Denmark APS");
 }
コード例 #6
0
 public ILocationsPage ViewLocations()
 {
     AppManager.App.Tap(e => e.Marked("Locations"));
     return(PageResolver.LocationPage());
 }