I wan't to be able to print the content of a WebView in UWP thanks to Windows Community Toolkit. It seems possible as the sample for the toolkit says mentions a PrepareWebViewForPrintingAsync
method:
// Add controls that you want to print
printHelper.AddFrameworkElementToPrint(await PrepareWebViewForPrintingAsync());
However there is no documentation nor code that explains how to do that.