maui-linux/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issu.../Bugzilla46458.cs

125 строки
3.1 KiB
C#

using Xamarin.Forms.CustomAttributes;
using Xamarin.Forms.Internals;
#if UITEST
using Xamarin.Forms.Core.UITests;
using Xamarin.UITest;
using NUnit.Framework;
#endif
namespace Xamarin.Forms.Controls.Issues
{
#if UITEST
[Category(UITestCategories.InputTransparent)]
[Category(UITestCategories.IsEnabled)]
#endif
[Preserve(AllMembers = true)]
[Issue(IssueTracker.Bugzilla, 46458, "Grid.IsEnabled property is not working", PlatformAffected.Android)]
public class Bugzilla46458 : TestContentPage
{
protected override void Init()
{
var parentGrid = new Grid
{
BackgroundColor = Color.Yellow
};
parentGrid.RowDefinitions.Add(new RowDefinition());
parentGrid.RowDefinitions.Add(new RowDefinition());
var grid = new Grid
{
IsEnabled = false,
BackgroundColor = Color.Red
};
grid.RowDefinitions.Add(new RowDefinition());
grid.RowDefinitions.Add(new RowDefinition());
grid.RowDefinitions.Add(new RowDefinition());
var label = new Label
{
HorizontalOptions = LayoutOptions.Center,
Text = "Success"
};
Grid.SetRow(label, 0);
grid.Children.Add(label);
var entry = new Entry
{
HorizontalOptions = LayoutOptions.Center,
HeightRequest = 50,
WidthRequest = 250,
Placeholder = "Placeholder",
AutomationId = "entry"
};
Grid.SetRow(entry, 1);
entry.Focused += (sender, args) => { label.Text = "Fail"; };
grid.Children.Add(entry);
var button = new Button
{
WidthRequest = 250,
HeightRequest = 50,
BackgroundColor = Color.Black,
TextColor = Color.White,
Text = "Click",
HorizontalOptions = LayoutOptions.Center,
Command = new Command(() => { label.Text = "Fail"; }),
AutomationId = "button"
};
Grid.SetRow(button, 2);
grid.Children.Add(button);
parentGrid.Children.Add(grid);
Grid.SetRow(grid, 1);
var button1 = new Button
{
WidthRequest = 250,
HeightRequest = 50,
BackgroundColor = Color.Black,
TextColor = Color.White,
Text = "Test transparency",
HorizontalOptions = LayoutOptions.Center,
AutomationId = "button1"
};
button1.Command = new Command((sender) =>
{
grid.IsEnabled = true;
grid.InputTransparent = true;
button1.Text = "Clicked";
});
Grid.SetRow(button1, 0);
parentGrid.Children.Add(button1);
Content = parentGrid;
}
#if UITEST
[Test]
public void GridIsEnabled()
{
RunningApp.WaitForElement(q => q.Marked("entry"));
RunningApp.Tap(q => q.Marked("entry"));
RunningApp.WaitForElement(q => q.Marked("Success"));
RunningApp.WaitForElement(q => q.Marked("button"));
RunningApp.Tap(q => q.Marked("button"));
RunningApp.WaitForElement(q => q.Marked("Success"));
RunningApp.WaitForElement(q => q.Marked("button1"));
RunningApp.Tap(q => q.Marked("button1"));
RunningApp.WaitForElement(q => q.Marked("Clicked"));
RunningApp.WaitForElement(q => q.Marked("entry"));
RunningApp.Tap(q => q.Marked("entry"));
RunningApp.WaitForElement(q => q.Marked("Success"));
RunningApp.WaitForElement(q => q.Marked("button"));
RunningApp.Tap(q => q.Marked("button"));
RunningApp.WaitForElement(q => q.Marked("Success"));
}
#endif
}
}