Im porting my QWebkit based app to QWebEngine but im having trouble getting some value of the Html page. this was easily done this way...

Qt Code:
  1. QWebFrame *webFrame = ui->webView->page()->mainFrame();
  2. QWebElement variable;
  3. variable= webFrame->findChild("#GridView1 td:nth-child(1)");
To copy to clipboard, switch view to plain text mode 

but i´ve just read that QWebElement need a rework and it is no included...so my question is: how can i get elements values from the HTML page in a similar way of old Webkit module??