summaryrefslogtreecommitdiffstats
path: root/tests/testcases/testcase1/test-uninstall.qs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testcases/testcase1/test-uninstall.qs')
-rw-r--r--tests/testcases/testcase1/test-uninstall.qs30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/testcases/testcase1/test-uninstall.qs b/tests/testcases/testcase1/test-uninstall.qs
new file mode 100644
index 000000000..c2d707fe1
--- /dev/null
+++ b/tests/testcases/testcase1/test-uninstall.qs
@@ -0,0 +1,30 @@
+function Controller()
+{
+ installer.autoRejectMessageBoxes
+}
+
+
+Controller.prototype.IntroductionPageCallback = function()
+{
+ gui.clickButton( buttons.NextButton )
+}
+
+Controller.prototype.ComponentSelectionPageCallback = function()
+{
+ var page = gui.pageWidgetByObjectName( "ComponentSelectionPage" )
+ page.keepSelectedComponentsRB.setChecked( true )
+ page.deselectComponent( "com.nokia.sdk.qt.gui" )
+ page.deselectComponent( "hgrmpfl (non-existing package)" ) // bad case for component lookup
+ page.selectComponent( "hgrmpfl2 (another non-existing package)" ) // bad case for component lookup
+ gui.clickButton( buttons.NextButton )
+}
+
+Controller.prototype.ReadyForInstallationPageCallback = function()
+{
+ gui.clickButton( buttons.NextButton )
+}
+
+Controller.prototype.FinishedPageCallback = function()
+{
+ gui.clickButton( buttons.FinishButton )
+}