eg: load("https://pyqt.site") :param url: 网址
(self, url)
| 59 | @pyqtSlot(str) |
| 60 | @pyqtSlot(QUrl) |
| 61 | def load(self, url): |
| 62 | """ |
| 63 | eg: load("https://pyqt.site") |
| 64 | :param url: 网址 |
| 65 | """ |
| 66 | return super(WebEngineView, self).load(QUrl(url)) |
| 67 | |
| 68 | def initSettings(self): |
| 69 | """ |
no outgoing calls
no test coverage detected