Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Update: Forum Guidelines & Code of Conduct

    QWebView values are updated but correspondingly its not updating on click.

    Qt WebKit
    1
    1
    546
    Loading More Posts
    • 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.
    • appollosputnik
      appollosputnik Banned last edited by

      [code]
      QWebElement selectBox2 =
      m_WebView->page()->mainFrame()->findFirstElement("select[id=hostid]");
      selectBox2.setFocus();
      selectBox2.evaluateJavaScript("this.selectedIndex = 2");

      QWebElement button_click = m_WebView->page()->mainFrame()->findFirstElement("input[type=submit]");
      if(button_click.isNull())
          return;
      button_click.evaluateJavaScript("this.click()");
      

      [/code]
      Please check the snippet above. I am able to make a selection from the option and able to click. But it seems the selection is not updated in QWebView. So when it's click it doesnt show me the updates. I think although I can see in QWebView the values are changed but it's not updated with the changed values.
      Please help me whats going wrong in this... Thanks Sujan

      1 Reply Last reply Reply Quote 0
      • First post
        Last post