Example #1
0
        protected async void EndTest()
        {
            PerfLog.MeasureStop(GetType().Name);

            if (_automated)
            {
                await Navigation.PopAsync();
            }
        }
Example #2
0
        protected override async void OnAppearing()
        {
            base.OnAppearing();
            PerfLog.MeasureStop(GetType().Name);

            if (_automated)
            {
                await Navigation.PopAsync();
            }
        }
Example #3
0
        protected override async void OnAppearing()
        {
            base.OnAppearing();

            PerfLog.MeasureStop("First Page Load");

            await Task.Delay(100);

            await AutomatedTests();
        }