QWebEngineHistoryItem#
The QWebEngineHistoryItem
class represents one item in the history of a web engine page. More…
Synopsis#
Functions#
def
iconUrl
()def
isValid
()def
lastVisited
()def
originalUrl
()def
title
()def
url
()
Detailed Description#
Each web engine history item represents an entry in the history stack of a web page, containing information about the page, its location, and the time when it was last visited.
See also
- class PySide6.QtWebEngineCore.QWebEngineHistoryItem(other)#
- Parameters
Constructs a history item from other
. The new item and other
will share their data, and modifying either this item or other
will modify both instances.
- PySide6.QtWebEngineCore.QWebEngineHistoryItem.iconUrl()#
- Return type
Returns the URL of the icon associated with the history item.
See also
- PySide6.QtWebEngineCore.QWebEngineHistoryItem.isValid()#
- Return type
bool
Returns whether this is a valid history item.
- PySide6.QtWebEngineCore.QWebEngineHistoryItem.lastVisited()#
- Return type
Returns the date and time when the page associated with the item was last visited.
- PySide6.QtWebEngineCore.QWebEngineHistoryItem.originalUrl()#
- Return type
Returns the original URL associated with the history item.
See also
- PySide6.QtWebEngineCore.QWebEngineHistoryItem.title()#
- Return type
str
Returns the title of the page associated with the history item.
See also
- PySide6.QtWebEngineCore.QWebEngineHistoryItem.url()#
- Return type
Returns the URL associated with the history item.
See also