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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
/*
* Copyright 2015-2016 Canonical Ltd.
*
* This file is part of webbrowser-app.
*
* webbrowser-app is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 3.
*
* webbrowser-app is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import QtQuick 2.4
import Lomiri.Test 1.0
LomiriTestCase {
function clickItem(item, button) {
if (button === undefined) button = Qt.LeftButton
var center = centerOf(item)
mouseClick(item, center.x, center.y, button)
}
function longPressItem(item, button) {
if (button === undefined) button = Qt.LeftButton
var center = centerOf(item)
mouseLongPress(item, center.x, center.y, button)
mouseRelease(item, center.x, center.y, button)
}
function getListItems(listview, itemName) {
waitForRendering(listview)
var items = []
if (listview) {
// ensure all the delegates are created
listview.cacheBuffer = listview.count * 1000
// In some cases the ListView might add other children to the
// contentItem, so we filter the list of children to include
// only actual delegates (names for delegates in this case
// follow the pattern "name_index")
var children = listview.contentItem.children
for (var i = 0; i < children.length; i++) {
if (children[i].objectName.indexOf(itemName) == 0) {
items.push(children[i])
}
}
}
return items
}
function swipeToDeleteAndConfirm(listitem) {
flick(listitem, listitem.width / 10, listitem.height / 2, listitem.width / 2, 0)
var confirm = findChild(listitem, "actionbutton_leadingAction.delete")
clickItem(confirm)
}
function waitFor(predicate, timeout) {
timeout = timeout || 5000
var now = Date.now()
var end = now + timeout
var c = now
while (c < end && !predicate()) {
wait(50)
c = Date.now()
}
return predicate()
}
}
|