- class QWebEngineHistoryItem¶
The
QWebEngineHistoryItem
class represents one item in the history of a web engine page. More…Synopsis¶
Methods¶
def
__init__()
def
iconUrl()
def
isValid()
def
lastVisited()
def
originalUrl()
def
title()
def
url()
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
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
- __init__(other)¶
- Parameters:
other –
QWebEngineHistoryItem
Constructs a history item from
other
. The new item andother
will share their data, and modifying either this item orother
will modify both instances.Returns the URL of the icon associated with the history item.
See also
- isValid()¶
- Return type:
bool
Returns whether this is a valid history item.
Returns the date and time when the page associated with the item was last visited.
Returns the original URL associated with the history item.
See also
- title()¶
- Return type:
str
Returns the title of the page associated with the history item.
See also
Returns the URL associated with the history item.
See also