Windows UWP - WebView get selected Text
问题 Currently in my UWP app I am getting the Text-selection of a webview through DataPackage package = await webview.CaptureSelectedContentToDataPackageAsync(); and read out the string with await package.GetView().GetTextAsync(); This works perfectly on the PC but not on the phone. What would be the best way to go about it on the phone? I tried injecting javascript with window.getSelection().toString(); or document.selection.createRange().text; but it didn't work or I used it the wrong way. Any