typedef struct Glue
{
QUrl url;
bool ok;
Website website;
QWaitCondition wait;
QWebElement curr;
QWebElement elm;
QWebElementCollection elms;
QString res;
uint loadCounter;
uint byteCounter;
};
I have above struct in my code that has WebElement and WebElement Collection. I want to use QwebEngine and QWebEngineView. what is the alternative of WebElement and WebElement Collection ? what is your tip?