summaryrefslogtreecommitdiffstats
path: root/uitest
diff options
context:
space:
mode:
authorZdeněk Crhonek <zcrhonek@gmail.com>2017-11-20 22:31:02 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2017-11-24 10:05:14 +0100
commitee64bf10051f9dce5c9983e715e7dce9b3ca1535 (patch)
tree532c018a7410080a110c6d0c50098b12d38b8c02 /uitest
parentset new document window as parent for dialogs during load (diff)
downloadcore-ee64bf10051f9dce5c9983e715e7dce9b3ca1535.tar.gz
core-ee64bf10051f9dce5c9983e715e7dce9b3ca1535.zip
uitest - writer Go to page dialog
Change-Id: I3088bb4b802b533db46dc3ab1d9d2fd241aa1fb0 Reviewed-on: https://gerrit.libreoffice.org/45009 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'uitest')
-rw-r--r--uitest/writer_tests/data/3pages.odtbin0 -> 8293 bytes
-rw-r--r--uitest/writer_tests/goToPage.py40
2 files changed, 40 insertions, 0 deletions
diff --git a/uitest/writer_tests/data/3pages.odt b/uitest/writer_tests/data/3pages.odt
new file mode 100644
index 000000000000..73097d91305e
--- /dev/null
+++ b/uitest/writer_tests/data/3pages.odt
Binary files differ
diff --git a/uitest/writer_tests/goToPage.py b/uitest/writer_tests/goToPage.py
new file mode 100644
index 000000000000..63a21f04d840
--- /dev/null
+++ b/uitest/writer_tests/goToPage.py
@@ -0,0 +1,40 @@
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+from uitest.framework import UITestCase
+from libreoffice.uno.propertyvalue import mkPropertyValues
+from uitest.uihelper.common import get_state_as_dict
+import time
+from uitest.path import get_srcdir_url
+
+def get_url_for_data_file(file_name):
+ return get_srcdir_url() + "/uitest/writer_tests/data/" + file_name
+
+class GoToPage_dialog(UITestCase):
+
+ def test_go_to_page(self):
+ writer_doc = self.ui_test.load_file(get_url_for_data_file("3pages.odt"))
+ xWriterDoc = self.xUITest.getTopFocusWindow()
+ xWriterEdit = xWriterDoc.getChild("writer_edit")
+
+ self.ui_test.execute_dialog_through_command(".uno:GotoPage")
+ xDialog = self.xUITest.getTopFocusWindow()
+ xPageText = xDialog.getChild("page")
+ xPageText.executeAction("TYPE", mkPropertyValues({"TEXT":"2"}))
+ xOkBtn = xDialog.getChild("ok")
+ xOkBtn.executeAction("CLICK", tuple())
+
+ self.assertEqual(get_state_as_dict(xWriterEdit)["CurrentPage"], "2")
+
+ self.ui_test.execute_dialog_through_command(".uno:GotoPage")
+ xDialog = self.xUITest.getTopFocusWindow()
+ xPageText = xDialog.getChild("page")
+ xPageText.executeAction("TYPE", mkPropertyValues({"TEXT":"3a"}))
+ xOkBtn = xDialog.getChild("ok")
+ xOkBtn.executeAction("CLICK", tuple())
+
+ self.assertEqual(get_state_as_dict(xWriterEdit)["CurrentPage"], "3")
+
+ self.ui_test.close_doc()