Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QtWebEngine
  4. QWebEngineView issue
Forum Updated to NodeBB v4.3 + New Features

QWebEngineView issue

Scheduled Pinned Locked Moved Unsolved QtWebEngine
1 Posts 1 Posters 357 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    avgustine
    wrote on last edited by
    #1

    Trying to get work properly QWebEngineView widget.
    Need to display webpage in kinda embedded browser in my app.

    From the beginning everything works fine.
    I test view with google.com url.
    Widget shows page, I can input, click on buttons for search, etc.
    But after some time widget seems to crash.
    It shows empty window instead of web page.

    I've got such log output:

    [9428:10292:1007/160758.387:ERROR:sync_point_manager.cc(249)] Client waiting on non-existent sync token The thread 0x13f0 has exited with code 0 (0x0).

    What can I do to fix this?

    I use Qt 5.13.1 version and Visual Studio 2019.

    Here is the source code:

    webView = new QWebEngineView(this);
    webView->setGeometry(QRect(QPoint(0, 200), QSize(this->width(), this->height() - 200)));
    webView->load(QUrl("http://google.com/"));
    webView->setFocus();
    webView->show();
    
    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved