summaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qmltests/data/tst_properties.qml
blob: 13d40ed116dd526c3faddaa1259091050fc10630 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

import QtQuick
import QtTest
import QtWebEngine

TestWebEngineView {
    id: webEngineView
    width: 400
    height: 300

    TestCase {
        name: "WebEngineViewProperties"

        function test_title() {
            webEngineView.url =  Qt.resolvedUrl("test1.html")
            verify(webEngineView.waitForLoadSucceeded())
            compare(webEngineView.title, "Test page 1")
        }

        function test_url() {
            var testUrl = Qt.resolvedUrl("test1.html")
            webEngineView.url = testUrl
            verify(webEngineView.waitForLoadSucceeded())
            compare(webEngineView.url, testUrl)
        }
    }
}