C++/WinRT WinUI3: How to get html source code by WebView2?

249 Views Asked by At

I'm trying to use a webview2 control to get the body text of a website. But nothing showed.

My code:

winrt::Windows::Foundation::IAsyncAction MainWindow::myButton_Click(IInspectable const&, RoutedEventArgs const&)
    {
        myButton().Content(box_value(L"Clicked"));
        winrt::Microsoft::UI::Xaml::Controls::WebView2 web;
        std::wstring uriToLaunch{ L"http://www.bing.com" };
        Windows::Foundation::Uri uri{ uriToLaunch };
        web.Source(uri);
        co_await web.EnsureCoreWebView2Async();
        winrt::hstring obj = co_await web.CoreWebView2().ExecuteScriptAsync(L"document.body.innerText");
        TextBlock().Text(obj);
        web.close();
    }

Thank you indeed for your advise in advance.

1

There are 1 best solutions below

0
On

You might need to change your script. It should be like ExecuteScriptAsync("document.documentElement.outerHTML;")