QQuickWebEngineProfile#

The QQuickWebEngineProfile class provides a web engine profile shared by multiple pages. More

Inheritance diagram of PySide6.QtWebEngineQuick.QQuickWebEngineProfile

Synopsis#

Properties#

Functions#

Signals#

Static functions#

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#

A web engine profile contains settings, scripts, persistent cookie policy, and the list of visited links shared by all web engine pages that belong to the profile.

Information about visited links is stored together with persistent cookies and other persistent data in a storage determined by the storageName property. Persistent data is stored in a subdirectory determined by the persistentStoragePath property and the cache in a subdirectory determined by the cachePath property. The httpCacheType property describes the type of the cache: in-memory or on-disk. If only the storageName property is set, the other values are generated automatically based on it. If you specify any of the values manually, you should do it before creating any pages that belong to the profile.

Profiles can be used to isolate pages from each other. A typical use case is a dedicated off-the-record profile for a private browsing mode. An off-the-record profile forces cookies, the HTTP cache, and other normally persistent data to be stored only in memory. The offTheRecord property holds whether a profile is off-the-record.

The default profile can be accessed by defaultProfile() . It is a built-in profile that all web pages not specifically created with another profile belong to.

A WebEngineProfile instance can be created and accessed from C++ through the QQuickWebEngineProfile class, which exposes further functionality in C++. This allows Qt Quick applications to intercept URL requests (QQuickWebEngineProfile::setRequestInterceptor), or register custom URL schemes ( installUrlSchemeHandler ).

Spellchecking HTML form fields can be enabled per profile by setting the spellCheckEnabled property and the current languages used for spellchecking can be set by using the spellCheckLanguages property.

class PySide6.QtWebEngineQuick.QQuickWebEngineProfile([parent=None])#
Parameters:

parentPySide6.QtCore.QObject

Constructs a new profile with the parent parent.

Note

Properties can be used directly when from __feature__ import true_property is used or via accessor functions otherwise.

property PᅟySide6.QtWebEngineQuick.QQuickWebEngineProfile.cachePath: str#

The path to the location where the profile’s caches are stored, in particular the HTTP cache.

By default, the caches are stored below QStandardPaths::writableLocation(QStandardPaths::CacheLocation) in a directory named using storageName .

Access functions:
property PᅟySide6.QtWebEngineQuick.QQuickWebEngineProfile.downloadPath: str#

The path to the location where the downloaded files are stored.

Overrides the default path used for download location, setting it to path.

If set to an empty string, the default path is restored.

Note

By default, the download path is QStandardPaths::DownloadLocation.

Access functions:
property PᅟySide6.QtWebEngineQuick.QQuickWebEngineProfile.httpAcceptLanguage: str#

The value of the Accept-Language HTTP request-header field.

Access functions:
property PᅟySide6.QtWebEngineQuick.QQuickWebEngineProfile.httpCacheMaximumSize: int#

The maximum size of the HTTP cache. If 0, the size will be controlled automatically by QtWebEngine . The default value is 0.

See also

httpCacheType

Access functions:
property PᅟySide6.QtWebEngineQuick.QQuickWebEngineProfile.httpCacheType: HttpCacheType#

This enumeration describes the type of the HTTP cache.

If the profile is off-the-record or has no storageName set, MemoryHttpCache is returned.

Access functions:
property PᅟySide6.QtWebEngineQuick.QQuickWebEngineProfile.httpUserAgent: str#

The user-agent string sent with HTTP to identify the browser.

Access functions:
property PᅟySide6.QtWebEngineQuick.QQuickWebEngineProfile.isPushServiceEnabled: bool#

Whether the push messaging service is enabled.

Note

By default the push messaging service is disabled.

Note

Qt WebEngine uses the Firebase Cloud Messaging (FCM) as a browser push service. Therefore, all push messages will go through the Google push service and its respective servers.

Access functions:
property PᅟySide6.QtWebEngineQuick.QQuickWebEngineProfile.offTheRecord: bool#

Whether the web engine profile is off-the-record. An off-the-record profile forces cookies, the HTTP cache, and other normally persistent data to be stored only in memory. Profile is off-the-record by default.

Access functions:
property PᅟySide6.QtWebEngineQuick.QQuickWebEngineProfile.persistentCookiesPolicy: PersistentCookiesPolicy#

This enumeration describes the policy of cookie persistency. If the profile is off-the-record, NoPersistentCookies is returned.

Access functions:
property PᅟySide6.QtWebEngineQuick.QQuickWebEngineProfile.persistentStoragePath: str#

The path to the location where the persistent data for the browser and web content are stored. Persistent data includes persistent cookies, HTML5 local storage, and visited links.

By default, the storage is located below QStandardPaths::writableLocation(QStandardPaths::AppDataLocation) in a directory named using storageName .

Access functions:
property PᅟySide6.QtWebEngineQuick.QQuickWebEngineProfile.spellCheckEnabled: bool#

This property holds whether the web engine spell checker is enabled..

Access functions:
property PᅟySide6.QtWebEngineQuick.QQuickWebEngineProfile.spellCheckLanguages: list of strings#

This property holds The languages used by the spell checker..

Access functions:
property PᅟySide6.QtWebEngineQuick.QQuickWebEngineProfile.storageName: str#

The storage name that is used to create separate subdirectories for each profile that uses the disk for storing persistent data and cache.

Access functions:
PySide6.QtWebEngineQuick.QQuickWebEngineProfile.HttpCacheType#

This enum describes the HTTP cache type:

Constant

Description

QQuickWebEngineProfile.MemoryHttpCache

Use an in-memory cache. This is the default if off-the-record is set.

QQuickWebEngineProfile.DiskHttpCache

Use a disk cache. This is the default if off-the-record is not set. Falls back to MemoryHttpCache if off-the-record is set.

QQuickWebEngineProfile.NoCache

Disable both in-memory and disk caching. (Added in Qt 5.7)

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.PersistentCookiesPolicy#

This enum describes policy for cookie persistency:

Constant

Description

QQuickWebEngineProfile.NoPersistentCookies

Both session and persistent cookies are stored in memory. This is the only setting possible if off-the-record is set or no persistent data path is available.

QQuickWebEngineProfile.AllowPersistentCookies

Cookies marked persistent are saved to and restored from disk, whereas session cookies are only stored to disk for crash recovery. This is the default setting.

QQuickWebEngineProfile.ForcePersistentCookies

Both session and persistent cookies are saved to and restored from disk.

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.cachePath()#
Return type:

str

See also

setCachePath()

Getter of property cachePath .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.cachePathChanged()#

Notification signal of property cachePath .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.clearHttpCache()#

Removes the profile’s cache entries.

See also

clearHttpCache

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.cookieStore()#
Return type:

PySide6.QtWebEngineCore.QWebEngineCookieStore

Returns the cookie store for this profile.

static PySide6.QtWebEngineQuick.QQuickWebEngineProfile.defaultProfile()#
Return type:

PySide6.QtWebEngineQuick.QQuickWebEngineProfile

Returns the default profile.

The default profile is off-the-record.

See also

storageName()

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.downloadPath()#
Return type:

str

Getter of property downloadPath .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.downloadPathChanged()#

Notification signal of property downloadPath .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.httpAcceptLanguage()#
Return type:

str

Getter of property httpAcceptLanguage .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.httpAcceptLanguageChanged()#

Notification signal of property httpAcceptLanguage .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.httpCacheMaximumSize()#
Return type:

int

Getter of property httpCacheMaximumSize .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.httpCacheMaximumSizeChanged()#

Notification signal of property httpCacheMaximumSize .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.httpCacheType()#
Return type:

HttpCacheType

Getter of property httpCacheType .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.httpCacheTypeChanged()#

Notification signal of property httpCacheType .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.httpUserAgent()#
Return type:

str

Getter of property httpUserAgent .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.httpUserAgentChanged()#

Notification signal of property httpUserAgent .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.installUrlSchemeHandler(scheme, arg__2)#
Parameters:

Registers a handler handler for custom URL scheme scheme in the profile.

It is necessary to first register the scheme with registerScheme at application startup.

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.isOffTheRecord()#
Return type:

bool

Getter of property offTheRecord .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.isPushServiceEnabled()#
Return type:

bool

Getter of property isPushServiceEnabled .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.isSpellCheckEnabled()#
Return type:

bool

Getter of property spellCheckEnabled .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.offTheRecordChanged()#

Notification signal of property offTheRecord .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.persistentCookiesPolicy()#
Return type:

PersistentCookiesPolicy

Getter of property persistentCookiesPolicy .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.persistentCookiesPolicyChanged()#

Notification signal of property persistentCookiesPolicy .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.persistentStoragePath()#
Return type:

str

Getter of property persistentStoragePath .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.persistentStoragePathChanged()#

Notification signal of property persistentStoragePath .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.presentNotification(notification)#
Parameters:

notificationPySide6.QtWebEngineCore.QWebEngineNotification

This signal is emitted whenever there is a newly created user notification. The notification argument holds the QWebEngineNotification instance to query data and interact with.

See also

presentNotification

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.pushServiceEnabledChanged()#

Notification signal of property isPushServiceEnabled .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.removeAllUrlSchemeHandlers()#

Removes all custom URL scheme handlers installed in the profile.

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.removeUrlScheme(scheme)#
Parameters:

schemePySide6.QtCore.QByteArray

Removes the custom URL scheme scheme from the profile.

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.removeUrlSchemeHandler(arg__1)#
Parameters:

arg__1PySide6.QtWebEngineCore.QWebEngineUrlSchemeHandler

Removes the custom URL scheme handler handler from the profile.

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.setCachePath(path)#
Parameters:

path – str

See also

cachePath()

Setter of property cachePath .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.setDownloadPath(path)#
Parameters:

path – str

See also

downloadPath()

Setter of property downloadPath .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.setHttpAcceptLanguage(httpAcceptLanguage)#
Parameters:

httpAcceptLanguage – str

Setter of property httpAcceptLanguage .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.setHttpCacheMaximumSize(maxSize)#
Parameters:

maxSize – int

Setter of property httpCacheMaximumSize .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.setHttpCacheType(arg__1)#
Parameters:

arg__1HttpCacheType

See also

httpCacheType()

Setter of property httpCacheType .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.setHttpUserAgent(userAgent)#
Parameters:

userAgent – str

See also

httpUserAgent()

Setter of property httpUserAgent .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.setOffTheRecord(offTheRecord)#
Parameters:

offTheRecord – bool

See also

isOffTheRecord()

Setter of property offTheRecord .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.setPersistentCookiesPolicy(arg__1)#
Parameters:

arg__1PersistentCookiesPolicy

Setter of property persistentCookiesPolicy .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.setPersistentStoragePath(path)#
Parameters:

path – str

Setter of property persistentStoragePath .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.setPushServiceEnabled(enable)#
Parameters:

enable – bool

Setter of property isPushServiceEnabled .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.setSpellCheckEnabled(enabled)#
Parameters:

enabled – bool

Setter of property spellCheckEnabled .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.setSpellCheckLanguages(languages)#
Parameters:

languages – list of strings

Setter of property spellCheckLanguages .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.setStorageName(name)#
Parameters:

name – str

See also

storageName()

Setter of property storageName .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.setUrlRequestInterceptor(interceptor)#
Parameters:

interceptorPySide6.QtWebEngineCore.QWebEngineUrlRequestInterceptor

Registers a request interceptor singleton interceptor to intercept URL requests.

The profile does not take ownership of the pointer.

See also

QWebEngineUrlRequestInfo QWebEngineUrlRequestInterceptor

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.spellCheckEnabledChanged()#

Notification signal of property spellCheckEnabled .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.spellCheckLanguages()#
Return type:

list of strings

Returns the list of languages used by the spell checker.

Getter of property spellCheckLanguages .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.spellCheckLanguagesChanged()#

Notification signal of property spellCheckLanguages .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.storageName()#
Return type:

str

See also

setStorageName()

Getter of property storageName .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.storageNameChanged()#

Notification signal of property storageName .

PySide6.QtWebEngineQuick.QQuickWebEngineProfile.urlSchemeHandler(arg__1)#
Parameters:

arg__1PySide6.QtCore.QByteArray

Return type:

PySide6.QtWebEngineCore.QWebEngineUrlSchemeHandler

Returns the custom URL scheme handler register for the URL scheme scheme.