QWebEngineHistoryItem¶

The QWebEngineHistoryItem class represents one item in the history of a web engine page. More…

Inheritance diagram of PySide2.QtWebEngineWidgets.QWebEngineHistoryItem

Synopsis¶

Functions¶

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.

class PySide2.QtWebEngineWidgets.QWebEngineHistoryItem(other)¶
Parameters:

other – PySide2.QtWebEngineWidgets.QWebEngineHistoryItem

PySide2.QtWebEngineWidgets.QWebEngineHistoryItem.iconUrl()¶
Return type:

PySide2.QtCore.QUrl

Returns the URL of the icon associated with the history item.

PySide2.QtWebEngineWidgets.QWebEngineHistoryItem.isValid()¶
Return type:

bool

Returns whether this is a valid history item.

PySide2.QtWebEngineWidgets.QWebEngineHistoryItem.lastVisited()¶
Return type:

PySide2.QtCore.QDateTime

Returns the date and time when the page associated with the item was last visited.

See also

title() url()

PySide2.QtWebEngineWidgets.QWebEngineHistoryItem.originalUrl()¶
Return type:

PySide2.QtCore.QUrl

Returns the original URL associated with the history item.

See also

url()

PySide2.QtWebEngineWidgets.QWebEngineHistoryItem.swap(other)¶
Parameters:

other – PySide2.QtWebEngineWidgets.QWebEngineHistoryItem

Swaps the history item with the other item.

PySide2.QtWebEngineWidgets.QWebEngineHistoryItem.title()¶
Return type:

str

Returns the title of the page associated with the history item.

See also

url() lastVisited()

PySide2.QtWebEngineWidgets.QWebEngineHistoryItem.url()¶
Return type:

PySide2.QtCore.QUrl

Returns the URL associated with the history item.