summaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qmltests/data/tst_webchannel.qml
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2021-09-15 10:06:39 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-03-17 10:39:00 +0000
commitf33badbaa421b3a042af848110147547840eed4d (patch)
tree03939104b9a0906d7655b777d490e4202fd006bf /tests/auto/quick/qmltests/data/tst_webchannel.qml
parent237f70db66439a7b8e45bc6c48a600b9b13363a6 (diff)
Fix qrc sources for QWebEngineScript
Fixes: QTBUG-96525 Change-Id: I39d6247c0dd0e55e4fb91b176f34e676eeabbcdd Reviewed-by: Michal Klocek <michal.klocek@qt.io> (cherry picked from commit ce2d6a94ce99f8d6f82fbcbf45603f8eb7a92957) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'tests/auto/quick/qmltests/data/tst_webchannel.qml')
-rw-r--r--tests/auto/quick/qmltests/data/tst_webchannel.qml6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/auto/quick/qmltests/data/tst_webchannel.qml b/tests/auto/quick/qmltests/data/tst_webchannel.qml
index 70edc1bcd..82db70288 100644
--- a/tests/auto/quick/qmltests/data/tst_webchannel.qml
+++ b/tests/auto/quick/qmltests/data/tst_webchannel.qml
@@ -81,6 +81,12 @@ Item {
}
function test_basic() {
+ webView.userScripts.collection = [ {
+ name: "qtwebchanneljs",
+ sourceUrl: Qt.resolvedUrl("qrc:/qtwebchannel/qwebchannel.js"),
+ injectionPoint: WebEngineScript.DocumentCreation,
+ worldId: WebEngineScript.MainWorld
+ }]
webView.url = testUrl;
verify(webView.waitForLoadSucceeded());