QWebEngineLoadingInfo¶
A utility type for the loadingChanged
signal. More…
Synopsis¶
Functions¶
def
errorCode
()def
errorDomain
()def
errorString
()def
isErrorPage
()def
status
()def
url
()
Detailed Description¶
Contains information about a web page loading status change, such as the URL and current loading status (started, succeeded, stopped, failed).
See also
loadStarted
loadFinished
loadingChanged
- class PySide6.QtWebEngineCore.QWebEngineLoadingInfo(other)¶
- Parameters
- PySide6.QtWebEngineCore.QWebEngineLoadingInfo.LoadStatus¶
This enumeration represents the load status of a web page load request:
Constant
Description
QWebEngineLoadingInfo.LoadStartedStatus
Page is currently loading.
QWebEngineLoadingInfo.LoadStoppedStatus
Loading the page was stopped by the stop() method or by the loader code or network stack in Chromium.
QWebEngineLoadingInfo.LoadSucceededStatus
Page has been loaded with success.
QWebEngineLoadingInfo.LoadFailedStatus
Page could not be loaded.
- PySide6.QtWebEngineCore.QWebEngineLoadingInfo.ErrorDomain¶
This enumeration holds the type of a load error:
Constant
Description
QWebEngineLoadingInfo.NoErrorDomain
Error type is not known.
QWebEngineLoadingInfo.InternalErrorDomain
Content cannot be interpreted by Qt WebEngine.
QWebEngineLoadingInfo.ConnectionErrorDomain
Error results from a faulty network connection.
QWebEngineLoadingInfo.CertificateErrorDomain
Error is related to the SSL/TLS certificate.
QWebEngineLoadingInfo.HttpErrorDomain
Error is related to the HTTP connection.
QWebEngineLoadingInfo.FtpErrorDomain
Error is related to the FTP connection.
QWebEngineLoadingInfo.DnsErrorDomain
Error is related to the DNS connection.
- PySide6.QtWebEngineCore.QWebEngineLoadingInfo.errorCode()¶
- Return type
int
This property Holds the error code..
- PySide6.QtWebEngineCore.QWebEngineLoadingInfo.errorDomain()¶
- Return type
- PySide6.QtWebEngineCore.QWebEngineLoadingInfo.errorString()¶
- Return type
str
This property Holds the error message..
- PySide6.QtWebEngineCore.QWebEngineLoadingInfo.isErrorPage()¶
- Return type
bool
This property holds Indicates if the load resulted in an error page..
- PySide6.QtWebEngineCore.QWebEngineLoadingInfo.status()¶
- Return type
This property holds The load status of the page..
- PySide6.QtWebEngineCore.QWebEngineLoadingInfo.url()¶
- Return type
This property Holds the URL of the load request..
© 2022 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.