QQuickWebEngineScript¶

PyQt5.QtWebEngine.QQuickWebEngineScript

Inherits from QObject.

Description¶

Enables the injection of scripts in the JavaScript engine.

The QQuickWebEngineScript type enables the programmatic injection of so called user scripts in the JavaScript engine at different points, determined by injectionPoint(), during the loading of web content.

Scripts can be executed either in the main JavaScript world, along with the rest of the JavaScript coming from the web contents, or in their own isolated world. While the DOM of the page can be accessed from any world, JavaScript variables of a function defined in one world are not accessible from a different one. The worldId() property provides some predefined IDs for this purpose.

Enums¶

InjectionPoint

The point in the loading process at which the script will be executed.

Member

Value

Description

Deferred

0

The script will run when the page load finishes, or 500 ms after the document is ready, whichever comes first.

DocumentCreation

2

The script will be executed as soon as the document is created. This is not suitable for any DOM operation.

DocumentReady

1

The script will run as soon as the DOM is ready. This is equivalent to the DOMContentLoaded event firing in JavaScript.


ScriptWorldId

TODO

Member

Value

Description

ApplicationWorld

TODO

TODO

MainWorld

TODO

TODO

UserWorld

TODO

TODO

Methods¶

__init__(parent: QObject = None)

TODO


injectionPoint() → InjectionPoint

name() → str

See also

setName().


runOnSubframes() → bool

setInjectionPoint(InjectionPoint)

See also

injectionPoint().


setName(str)

See also

name().


setRunOnSubframes(bool)

See also

runOnSubframes().


setSourceCode(str)

See also

sourceCode().


setSourceUrl(QUrl)

See also

sourceUrl().


setWorldId(ScriptWorldId)

TODO


sourceCode() → str

See also

setSourceCode().


sourceUrl() → QUrl

See also

setSourceUrl().


timerEvent(QTimerEvent)

TODO


toString() → str

TODO


worldId() → ScriptWorldId

See also

setWorldId().

Signals¶

injectionPointChanged(InjectionPoint)

TODO


nameChanged(str)

TODO


runOnSubframesChanged(bool)

TODO


sourceCodeChanged(str)

TODO


sourceUrlChanged(QUrl)

TODO


worldIdChanged(ScriptWorldId)

TODO