summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.iOS.UITests/TestHelpers.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.iOS.UITests/TestHelpers.cs')
-rw-r--r--Xamarin.Forms.iOS.UITests/TestHelpers.cs34
1 files changed, 0 insertions, 34 deletions
diff --git a/Xamarin.Forms.iOS.UITests/TestHelpers.cs b/Xamarin.Forms.iOS.UITests/TestHelpers.cs
deleted file mode 100644
index 981122cb..00000000
--- a/Xamarin.Forms.iOS.UITests/TestHelpers.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-using Xamarin.UITest;
-using Xamarin.UITest.Queries;
-
-namespace Xamarin.Forms.UITests
-{
- public enum Speed
- {
- Slow,
- Fast
- }
-
- public static class TestHelpers
- {
- public static int ControlGalleryMaxScrolls = 30;
-
- public static void NavigateBack (this IApp app)
- {
- app.Tap (PlatformQueries.Back);
- }
-
- public static void NavigateToTestCases (this IApp app)
- {
- app.Tap (q => q.Marked ("Test Cases"));
- app.WaitForElement (q => q.Marked ("Carousel Async Add Page Issue"));
- }
-
- public static AppRect MainScreenBounds (this IApp app)
- {
- return app.Query (q => q.Raw ("*"))[0].Rect;
- }
-
- }
-}
-