summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core.iOS.UITests/Tests/WebViewUITests.cs
blob: e056b325505ac66a2ee1fed2af8b5393ad6b2b43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
using System;
using System.CodeDom;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Security.Cryptography;
using System.Threading;
using System.Reflection;

using NUnit.Framework;

using Xamarin.Forms.CustomAttributes;
using Xamarin.UITest.Android;
using Xamarin.UITest.Queries;
using Xamarin.UITest.iOS;

namespace Xamarin.Forms.Core.UITests
{
	[TestFixture]
	[Category(UITestCategories.WebView)]
	internal class WebViewUITests : _ViewUITests
	{
		public WebViewUITests ()
		{
			PlatformViewType = Views.WebView;
		}

		protected override void NavigateToGallery ()
		{
			App.NavigateToGallery (GalleryQueries.WebViewGallery);
		}

		[Category(UITestCategories.ManualReview)]
		public override void _IsEnabled ()
		{
			Assert.Inconclusive ("Does not make sense for WebView");
		}

		[Test]
		[Category(UITestCategories.ManualReview)]
		[Ignore("Keep empty test from failing in Test Cloud")]
		public override void _IsVisible () {}

		[UiTestExempt (ExemptReason.CannotTest, "Invalid interaction with Label")]
		public override void _Focus () {}

		// TODO
		public override void _GestureRecognizers () {}

		[UiTestExempt (ExemptReason.CannotTest, "Invalid interaction with Label")]
		public override void _IsFocused () {}

		[Test]
		[Category(UITestCategories.ManualReview)]
		[Ignore("Keep empty test from failing in Test Cloud")]
		public override void _Opacity () {}

		[Test]
		[Category(UITestCategories.ManualReview)]
		[Ignore("Keep empty test from failing in Test Cloud")]
		public override void _Rotation () {}

		[Test]
		[Category(UITestCategories.ManualReview)]
		[Ignore("Keep empty test from failing in Test Cloud")]
		public override void _RotationX () {}

		[Test]
		[Category(UITestCategories.ManualReview)]
		[Ignore("Keep empty test from failing in Test Cloud")]
		public override void _RotationY () {}


		[Test]
		[Category(UITestCategories.ManualReview)]
		[Ignore("Keep empty test from failing in Test Cloud")]
		public override void _TranslationX () {}

		[Test]
		[Category(UITestCategories.ManualReview)]
		[Ignore("Keep empty test from failing in Test Cloud")]
		public override void _TranslationY () {}

		[Test]
		[Category (UITestCategories.ManualReview)]
		[Ignore("Keep empty test from failing in Test Cloud")]
		public override void _Scale () {}

		[UiTestExempt (ExemptReason.CannotTest, "Invalid interaction with Label")]
		public override void _UnFocus () {}

		// TODO
		// Implement control specific ui tests

		protected override void FixtureTeardown ()
		{
			App.NavigateBack ();
			base.FixtureTeardown ();
		}
	}
}