-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Windows] Disable HitTest when showing EmptyView on CollectionView #26006
Conversation
|
||
[Test] | ||
[Category(UITestCategories.CollectionView)] | ||
public void CanTapButtonOnEmptyView() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This test is failing on Android, iOS and Catalyst.
at Microsoft.Maui.TestCases.Tests.Issues.Issue19609.CanTapButtonOnEmptyView() in /_/src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue19609.cs:line 19
Could you check that the button is on the screen? You can use the timeout
parameter to wait for one second for example.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hum seems the screenshot is on the previous screen?
but I have a waiterElement
App.WaitForElement("btnClick");
Description of Change
On the the templates for
FormsListViewTemplate
theEmptyViewContentControl
is bellow the ScrollViewer so it does t receive inputs even if no items are showing.Issues Fixed
Fixes #19609