summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla26993.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla26993.cs')
-rw-r--r--Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla26993.cs105
1 files changed, 105 insertions, 0 deletions
diff --git a/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla26993.cs b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla26993.cs
new file mode 100644
index 00000000..765fbb12
--- /dev/null
+++ b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla26993.cs
@@ -0,0 +1,105 @@
+using System;
+
+using Xamarin.Forms.CustomAttributes;
+using System.Collections.Generic;
+
+#if UITEST
+using Xamarin.UITest;
+using NUnit.Framework;
+#endif
+
+namespace Xamarin.Forms.Controls
+{
+ [Preserve (AllMembers = true)]
+ [Issue (IssueTracker.Bugzilla, 26993, "https://bugzilla.xamarin.com/show_bug.cgi?id=26993")]
+ public class Bugzilla26993 : TestContentPage // or TestMasterDetailPage, etc ...
+ {
+ [Preserve (AllMembers = true)]
+ public class Bz26993ViewCell : ViewCell
+ {
+ static int s_id = 0;
+
+ public Bz26993ViewCell ()
+ {
+ View = new WebView {
+ AutomationId = "AutomationId" + s_id,
+ HeightRequest = 300,
+ Source = new HtmlWebViewSource {
+ Html = "<html><head><link rel=\"stylesheet\" href=\"default.css\"></head><body><h1 id=\"CellID" + s_id + "\">Xamarin.Forms " + s_id + "</h1><p>The CSS and image are loaded from local files!</p><img src='WebImages/XamarinLogo.png'/><p><a id=\"LinkID" + s_id++ + "\" href=\"local.html\">next page</a></p></body></html>"
+ }
+ };
+ }
+ }
+
+ protected override void Init ()
+ {
+ var itemSource = new List<string> {
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ };
+
+ Content = new StackLayout {
+ Children = {
+ new ListView {
+ RowHeight = 300,
+ ItemsSource = itemSource,
+ ItemTemplate = new DataTemplate (typeof(Bz26993ViewCell))
+ }
+ }
+ };
+ }
+
+#if UITEST
+ [Test]
+ public void Bugzilla26993Test ()
+ {
+ RunningApp.Screenshot ("I am at BZ26993");
+
+ RunningApp.WaitForElement (q=>q.WebView(0).Css("#CellID0"));
+ RunningApp.Tap (q=>q.WebView(0).Css("#LinkID0"));
+
+ RunningApp.Screenshot ("Load local HTML");
+
+ RunningApp.WaitForNoElement (q=>q.WebView(0).Css("#LinkID0"));
+ var newElem = RunningApp.Query (q => q.WebView (0).Css ("h1"));
+ Assert.AreEqual ("#LocalHtmlPage", newElem[0].Id);
+
+ RunningApp.Screenshot ("I see the Label");
+ }
+#endif
+ }
+}