summaryrefslogtreecommitdiffstats
path: root/tests/auto/installer/scriptengine/data/auto-install.qs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/installer/scriptengine/data/auto-install.qs')
-rw-r--r--tests/auto/installer/scriptengine/data/auto-install.qs16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/auto/installer/scriptengine/data/auto-install.qs b/tests/auto/installer/scriptengine/data/auto-install.qs
new file mode 100644
index 000000000..26937fc05
--- /dev/null
+++ b/tests/auto/installer/scriptengine/data/auto-install.qs
@@ -0,0 +1,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")
+}