diff --git a/src/Controls/tests/TestCases.Android.Tests/snapshots/android/WebViewShouldNotMirrored.png b/src/Controls/tests/TestCases.Android.Tests/snapshots/android/WebViewShouldNotMirrored.png index 1bc209e42cef..24690abe54f3 100644 Binary files a/src/Controls/tests/TestCases.Android.Tests/snapshots/android/WebViewShouldNotMirrored.png and b/src/Controls/tests/TestCases.Android.Tests/snapshots/android/WebViewShouldNotMirrored.png differ diff --git a/src/Controls/tests/TestCases.HostApp/Issues/Issue30575.cs b/src/Controls/tests/TestCases.HostApp/Issues/Issue30575.cs index 052641a2abf9..3a54a1f944c4 100644 --- a/src/Controls/tests/TestCases.HostApp/Issues/Issue30575.cs +++ b/src/Controls/tests/TestCases.HostApp/Issues/Issue30575.cs @@ -8,14 +8,22 @@ public Issue30575() VerticalStackLayout stackLayout = new VerticalStackLayout(); WebView webView = new WebView { + HorizontalOptions = LayoutOptions.Start, HeightRequest = 400, WidthRequest = 400, FlowDirection = FlowDirection.RightToLeft, }; - webView.Source = new UrlWebViewSource + webView.Source = new HtmlWebViewSource { - Url = "https://github.com/dotnet/maui/issues/30575" + Html = @" + + +

.NET MAUI

+

Welcome to WebView.

+ + + " }; Label label = new Label diff --git a/src/Controls/tests/TestCases.Mac.Tests/snapshots/mac/WebViewShouldNotMirrored.png b/src/Controls/tests/TestCases.Mac.Tests/snapshots/mac/WebViewShouldNotMirrored.png index 627435c5fba1..11c6d31423d2 100644 Binary files a/src/Controls/tests/TestCases.Mac.Tests/snapshots/mac/WebViewShouldNotMirrored.png and b/src/Controls/tests/TestCases.Mac.Tests/snapshots/mac/WebViewShouldNotMirrored.png differ diff --git a/src/Controls/tests/TestCases.Shared.Tests/Tests/CollectionView/CollectionViewUITests.HeaderAndFooter.cs b/src/Controls/tests/TestCases.Shared.Tests/Tests/CollectionView/CollectionViewUITests.HeaderAndFooter.cs index 2737bb66aef5..462103f2b210 100644 --- a/src/Controls/tests/TestCases.Shared.Tests/Tests/CollectionView/CollectionViewUITests.HeaderAndFooter.cs +++ b/src/Controls/tests/TestCases.Shared.Tests/Tests/CollectionView/CollectionViewUITests.HeaderAndFooter.cs @@ -74,7 +74,7 @@ public void HeaderFooterHorizontalViewWorks() // Scroll right to ensure the footer is visible and positioned at the end for (int i = 0; i < 5; i++) { - App.ScrollRight("CV", ScrollStrategy.Auto, 0.9, 250); + App.ScrollRight("CV", ScrollStrategy.Gesture, 0.9, 250); } // Verify the footer is visible diff --git a/src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue12134.cs b/src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue12134.cs index 4b3cc30d4e74..b6d6df466553 100644 --- a/src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue12134.cs +++ b/src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue12134.cs @@ -15,7 +15,6 @@ public Issue12134(TestDevice testDevice) : base(testDevice) [Test] [Category(UITestCategories.WebView)] [Category(UITestCategories.Compatibility)] - [FlakyTest("Temporarily disabled due to flakiness in CI. Tracking issue: https://github.com/dotnet/maui/issues/31869")] public void CookiesCorrectlyLoadWithMultipleWebViews() { VerifyInternetConnectivity(); diff --git a/src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue30575.cs b/src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue30575.cs index 73fc2cd1b9a9..f1bbf2c00220 100644 --- a/src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue30575.cs +++ b/src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue30575.cs @@ -12,7 +12,6 @@ public Issue30575(TestDevice device) : base(device) { } [Test] [Category(UITestCategories.WebView)] - [FlakyTest("Temporarily disabled due to flakiness in CI. Tracking issue: https://github.com/dotnet/maui/issues/31869")] public void WebViewShouldNotMirrored() { App.WaitForElement("WebViewLabel"); diff --git a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/WebViewShouldNotMirrored.png b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/WebViewShouldNotMirrored.png index bf6c65012972..1fd7930d84e5 100644 Binary files a/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/WebViewShouldNotMirrored.png and b/src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/WebViewShouldNotMirrored.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios/WebViewShouldNotMirrored.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios/WebViewShouldNotMirrored.png index 2e05a1b747fb..f1229468f16d 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios/WebViewShouldNotMirrored.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios/WebViewShouldNotMirrored.png differ