Qt Forum

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

    Update: Forum Guidelines & Code of Conduct

    Setting attribute in webpage and press button 'GO'

    General and Desktop
    1
    2
    897
    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

      I am developing a web application. I need to select an option from dropdown in a website and press 'GO' button.

      I am connect with the website like as below.

      [code]
      QNetworkAccessManager m_manager = new QNetworkAccessManager(this);
      connect(m_manager, SIGNAL(finished(QNetworkReply
      )), this, SLOT(replyFinished(QNetworkReply*)));
      m_manager->get(QNetworkRequest(QUrl("http://www.mysite.com/")));

      m_WebPage = new QWebPage();
      m_WebPage->setNetworkAccessManager(m_manager);
      QString attr = m_WebPage->mainFrame()->documentElement().setAttribute("Diablo 3 (Diablo III)", "MySelection");
      [/code]

      but with this my application crashing. Please tell me how can set an attribute in a webpage and press go. How can I get the attribute and the button 'GO' in my application.

      Any suggestions is highly appreciated. Thanks Sujan

      1 Reply Last reply Reply Quote 0
      • appollosputnik
        appollosputnik Banned last edited by

        To select 2 options I do the following. And also click. But the values in my QWebView are not changing based on this. Please help whats wrong going on.
        

        [code]
        QWebElement selectBox =
        m_WebView->page()->mainFrame()->findFirstElement("select[id=gameid]");

        selectBox.setAttribute("value", "187");
        
        QWebElement selectBox2 =
               m_WebView->page()->mainFrame()->findFirstElement("select[id=hostid]");
        
        selectBox2.setAttribute("value", "24351");
        
        
        QWebElement button = m_WebView->page()->mainFrame()->documentElement().findFirst("input[type=button]");
        button.evaluateJavaScript("this.click()");
        

        [/code]

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