This repository has been archived on 2022-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
DevOpsOpenHack/MobileApps/MyDriving/MyDriving.UITests/Tests/PastTripsTests.cs

64 lines
1.4 KiB
C#
Raw Permalink Normal View History

2022-11-03 20:41:13 +00:00
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for details.
using Xamarin.UITest;
using NUnit.Framework;
namespace MyDriving.UITests
{
public class PastTripsTests : AbstractSetup
{
public PastTripsTests (Platform platform) : base (platform)
{
}
[Test]
public void PullToRefreshTest ()
{
new CurrentTripPage()
.NavigateTo("Past Trips");
new PastTripsPage()
.PullToRefresh ();
}
[Test]
public void NavigateToDetailsTest ()
{
new CurrentTripPage()
.NavigateTo("Past Trips");
new PastTripsPage ()
.NavigateToPastTripsDetail ("James@ToVivace");
new PastTripDetailPage()
.AssertOnPage();
}
[Test]
public void MoveTripSliderTest ()
{
new CurrentTripPage()
.NavigateTo("Past Trips");
new PastTripsPage()
.NavigateToPastTripsDetail("James@ToVivace");
new PastTripDetailPage()
.MoveTripSlider ();
}
[Test]
public void ClickTripSliderEndpointsTest ()
{
new CurrentTripPage()
.NavigateTo("Past Trips");
new PastTripsPage()
.NavigateToPastTripsDetail("James@ToVivace");
new PastTripDetailPage()
.ClickTripSliderEndpoints ();
}
}
}