I am porting from QGraphicsWebView from QWebEngineView

I want to emit linkClicked(QUrl) signal, when a href is clicked on the QWebEnginePage similar to the ones found in QWebPage.

The signals found in QWebEnginePage are as below but not able to find linkClicked(QUrl).
Qt Code:
  1. void authenticationRequired(const QUrl & requestUrl, QAuthenticator * authenticator)
  2. void featurePermissionRequestCanceled(const QUrl & securityOrigin, QWebEnginePage::Feature feature)
  3. void featurePermissionRequested(const QUrl & securityOrigin, QWebEnginePage::Feature feature)
  4. void geometryChangeRequested(const QRect & geom)
  5. void iconUrlChanged(const QUrl & url)
  6. void linkHovered(const QString & url)
  7. void loadFinished(bool ok)
  8. void loadProgress(int progress)
  9. void loadStarted()
  10. void proxyAuthenticationRequired(const QUrl & requestUrl, QAuthenticator * authenticator, const QString & proxyHost)
  11. void selectionChanged()
  12. void titleChanged(const QString & title)
  13. void urlChanged(const QUrl & url)
  14. void windowCloseRequested()
To copy to clipboard, switch view to plain text mode 

http://doc.qt.io/qt-5/qwebenginepage.html

How to emulate linkClickedSignal(QUrl)

Any help will be of great use. Thanks