Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,8 @@ public void DatePicker_SetFontSizeAndFormat_VerifyVisualState()
App.WaitForElement("Apply");
App.Tap("Apply");
App.WaitForElementTillPageNavigationSettled("DatePickerControl");
App.WaitForElement("CultureFormatLabel");
App.Tap("CultureFormatLabel");
VerifyScreenshot();
}
#endif
Expand Down Expand Up @@ -360,6 +362,8 @@ public void DatePicker_SetMinimumDateAndDate_VerifyVisualState()
App.WaitForElement("Apply");
App.Tap("Apply");
App.WaitForElementTillPageNavigationSettled("DatePickerControl");
App.WaitForElement("CultureFormatLabel");
App.Tap("CultureFormatLabel");
VerifyScreenshot();
}

Expand All @@ -382,6 +386,8 @@ public void DatePicker_SetMaximumDateAndDate_VerifyVisualState()
App.WaitForElement("Apply");
App.Tap("Apply");
App.WaitForElementTillPageNavigationSettled("DatePickerControl");
App.WaitForElement("CultureFormatLabel");
App.Tap("CultureFormatLabel");
VerifyScreenshot();
}

Expand Down Expand Up @@ -502,6 +508,8 @@ public void DatePicker_SetFontSizeAndFormat_f_VerifyVisualState()
App.WaitForElement("Apply");
App.Tap("Apply");
App.WaitForElementTillPageNavigationSettled("DatePickerControl");
App.WaitForElement("CultureFormatLabel");
App.Tap("CultureFormatLabel");
VerifyScreenshot();
}
#endif
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,9 @@ public void SearchBar_SetFontSizeAndPlaceholder_VerifyVisualState()
App.WaitForElement("Apply");
App.Tap("Apply");
App.WaitForElementTillPageNavigationSettled("SearchBar");
#if WINDOWS // For maintaining consistency between .NET 9.0 and .NET 10.0
App.Tap("SearchBar");
#endif
VerifyScreenshotWithPlatformCropping();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,8 @@ public void TimePicker_SetFontAttributesAndFormat_VerifyVisualState()
App.WaitForElement("Apply");
App.Tap("Apply");
App.WaitForElementTillPageNavigationSettled("TimePickerControl");
App.WaitForElement("CultureFormatLabel");
App.Tap("CultureFormatLabel");
VerifyScreenshot();
}
#endif
Expand Down Expand Up @@ -267,6 +269,8 @@ public void TimePicker_SetFontFamilyAndFormat_VerifyVisualState()
App.WaitForElement("Apply");
App.Tap("Apply");
App.WaitForElementTillPageNavigationSettled("TimePickerControl");
App.WaitForElement("CultureFormatLabel");
App.Tap("CultureFormatLabel");
VerifyScreenshot();
}
#endif
Expand All @@ -290,6 +294,8 @@ public void TimePicker_SetFontSizeAndFormat_VerifyVisualState()
App.WaitForElement("Apply");
App.Tap("Apply");
App.WaitForElementTillPageNavigationSettled("TimePickerControl");
App.WaitForElement("CultureFormatLabel");
App.Tap("CultureFormatLabel");
VerifyScreenshot();
}
#endif
Expand Down Expand Up @@ -442,6 +448,8 @@ public void TimePicker_SetFormat_T_WithFontSize_VerifyVisualState()
App.WaitForElement("Apply");
App.Tap("Apply");
App.WaitForElementTillPageNavigationSettled("TimePickerControl");
App.WaitForElement("CultureFormatLabel");
App.Tap("CultureFormatLabel");
VerifyScreenshot();
}
#endif
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ public void SettingSelectedItemAndItemSourceShouldNotCrash()
{
App.WaitForElement("MauiButton");
App.Tap("MauiButton");
App.WaitForNoElement("MauiCollectionView");
App.WaitForElement("MauiButton"); // If app doesn't crash, test passes.
}
}
Loading