summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla28575.cs
blob: 665dec2d25b8c0ef5cba0e0d8e65a0b323e6fcef (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
using System;

using Xamarin.Forms.CustomAttributes;

#if UITEST
using Xamarin.UITest;
using NUnit.Framework;
#endif

namespace Xamarin.Forms.Controls
{
	[Preserve (AllMembers = true)]
	[Issue (IssueTracker.Bugzilla, 28575, "listview header set to null")]
	public class Bugzilla28575 : TestContentPage
	{
		readonly string _header = "Hello I am Header!!!!";

		protected override void Init ()
		{
			var listview = new ListView ();
			listview.Header = new Label () {
				Text = _header,
				TextColor = Color.Red,
				XAlign = TextAlignment.Center
			};

			var b = new Button () {
				Text = "Click",
				AutomationId = "btnClick"
					
			};
			b.Clicked += (sender, e) => listview.Header = null;	

			Content = new StackLayout {
				Children = {
					b,
					listview
				}
			};
		}

		#if UITEST
		[Test]
		public void Bugzilla28575Test ()
		{
			RunningApp.Screenshot ("I am at Bugzilla28575Test ");
			RunningApp.WaitForElement (q => q.Marked (_header));
			RunningApp.Tap (q => q.Marked ("Click"));
			RunningApp.WaitForNoElement (q => q.Marked (_header));
		}
		#endif
	}
}