Skip to content

Commit dc00d47

Browse files
authored
Merge pull request #19672 from unoplatform/dev/jela/webview-script
fix(webview2): [wasm] Fix ExecuteScriptAsync
2 parents 30ff4c7 + a7beb87 commit dc00d47

File tree

3 files changed

+72
-2
lines changed

3 files changed

+72
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
#if HAS_UNO_WINUI
2+
using System;
3+
using System.Threading.Tasks;
4+
using Private.Infrastructure;
5+
using Microsoft/* UWP don't rename */.UI.Xaml.Controls;
6+
using System.Linq;
7+
using Microsoft.Web.WebView2.Core;
8+
using System.Diagnostics;
9+
10+
namespace Uno.UI.RuntimeTests.Tests.Windows_UI_Xaml_Controls;
11+
12+
[TestClass]
13+
[RunsOnUIThread]
14+
public class Given_WebView2
15+
{
16+
[TestMethod]
17+
#if __SKIA__
18+
[Ignore("WebView2 is not yet supported on skia targets")]
19+
#endif
20+
public async Task When_InvokeScriptAsync()
21+
{
22+
var border = new Border();
23+
var webView = new WebView2();
24+
webView.Width = 200;
25+
webView.Height = 200;
26+
border.Child = webView;
27+
TestServices.WindowHelper.WindowContent = border;
28+
bool navigated = false;
29+
await TestServices.WindowHelper.WaitForLoaded(border);
30+
webView.NavigationCompleted += (sender, e) => navigated = true;
31+
webView.NavigateToString("<html><body><div id='test' style='width: 100px; height: 100px; background-color: blue;' /></body></html>");
32+
await TestServices.WindowHelper.WaitFor(() => navigated, timeoutMS: 10000);
33+
34+
var sw = Stopwatch.StartNew();
35+
string color = null;
36+
37+
do
38+
{
39+
// We need to wait for the element to be available, navigated
40+
// may be set to true too early on wasm.
41+
color = await webView.ExecuteScriptAsync(
42+
"""
43+
(function () {
44+
let testElement = document.getElementById('test');
45+
if(testElement){
46+
return testElement.style.backgroundColor.toString();
47+
}
48+
return "";
49+
})()
50+
""");
51+
52+
} while (sw.Elapsed < TimeSpan.FromSeconds(10) && string.IsNullOrEmpty(color.Replace("\"", "")));
53+
54+
Assert.AreEqual("\"blue\"", color);
55+
56+
// Change color to red
57+
await webView.ExecuteScriptAsync("document.getElementById('test').style.backgroundColor = 'red'");
58+
color = await webView.ExecuteScriptAsync("document.getElementById('test').style.backgroundColor.toString()");
59+
60+
Assert.AreEqual("\"red\"", color);
61+
}
62+
}
63+
#endif

src/Uno.UI/UI/Xaml/Controls/WebView/Native/Wasm/NativeWebView.Interop.wasm.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ internal static partial class NativeMethods
2020
[JSImport("globalThis.Microsoft.UI.Xaml.Controls.WebView.goForward")]
2121
internal static partial void GoForward(IntPtr htmlId);
2222

23-
[JSImport("globalThis.Microsoft.UI.Xaml.Controls.WebView.executeScriptAsync")]
23+
[JSImport("globalThis.Microsoft.UI.Xaml.Controls.WebView.executeScript")]
2424
internal static partial string ExecuteScript(IntPtr htmlId, string script);
2525

2626
[JSImport("globalThis.Microsoft.UI.Xaml.Controls.WebView.getDocumentTitle")]

src/Uno.UI/UI/Xaml/Controls/WebView/Native/Wasm/NativeWebView.wasm.cs

+8-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,14 @@ private void OnNavigationCompleted(object sender, EventArgs e)
4848
_coreWebView.RaiseNavigationCompleted(uri, true, 200, CoreWebView2WebErrorStatus.Unknown);
4949
}
5050

51-
public Task<string> ExecuteScriptAsync(string script, CancellationToken token) => Task.FromResult(NativeMethods.ExecuteScript(HtmlId, script));
51+
public async Task<string> ExecuteScriptAsync(string script, CancellationToken token)
52+
{
53+
await Task.Yield();
54+
var result = NativeMethods.ExecuteScript(HtmlId, script);
55+
56+
// String needs to be wrapped in quotes to match Windows behavior
57+
return $"\"{result.Replace("\"", "\\\"")}\"";
58+
}
5259

5360
public Task<string> InvokeScriptAsync(string script, string[] arguments, CancellationToken token) => Task.FromResult<string>("");
5461

0 commit comments

Comments
 (0)