Hello,
I am trying to open a website in a QWebView box in my gui. I have a signal slot connection that states if the "open map" button is clicked, it will go to my omap function which is:
Qt Code:
def omap(self): m = QtWebKit.QWebView(self) m.setUrl(j) print j m.load(j)To copy to clipboard, switch view to plain text mode
however, the website is not loading in the QWebView box. I'm not sure what I am doing wrong here or if this is even the correct way to accomplish what I am doing (trying to have a website embedded in my gui) Any help would be greatful, thank you in advance.
Bookmarks