I want to integrate/show a web page (url) section on my main window. I use anaconda, pyqt (5.6) and designer. I added a QWebView on my main form via designer. But I can't run it. The error I get when I try to run the main window is:
self.webView_test = QtWebKitWidgets.QWebView(self.centralwidget)
NameError: name 'QtWebKitWidgets' is not defined
I did some research and there are lots of similar posts. It seems QtWebKitWidgets (and also QtWebKit) is no longer available (deprecated). This is confusing since I have the QWebView option via designer.
I am looking for an answer that will solve the problem without having to reinstall pyqt or any other major changes. Though I am okay to install something (package/module) from anacondas web site etc. I want to do the gui aspect completely from designer so if there is a way, please provide me some help.
ref: