summaryrefslogtreecommitdiffstats
path: root/tests/auto/installer/scriptengine/data/auto-install.qs
blob: 26937fc0530a1313d8ecee69698a7016230637b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
function Controller()
{
    installer.setMessageBoxAutomaticAnswer("OverwriteTargetDirectory", QMessageBox.Yes);
    installer.setValue("GuiTestValue", "hello");
}

Controller.prototype.ComponentSelectionPageCallback = function()
{
    var notExistingButtonId = 9999999;
    gui.clickButton(notExistingButtonId);
}

Controller.prototype.FinishedPageCallback = function()
{
    print("FinishedPageCallback - OK")
}