summaryrefslogtreecommitdiff
path: root/sw/qa/uitest/writer_tests4/tdf135636.py
diff options
context:
space:
mode:
Diffstat (limited to 'sw/qa/uitest/writer_tests4/tdf135636.py')
-rw-r--r--sw/qa/uitest/writer_tests4/tdf135636.py39
1 files changed, 15 insertions, 24 deletions
diff --git a/sw/qa/uitest/writer_tests4/tdf135636.py b/sw/qa/uitest/writer_tests4/tdf135636.py
index e4da391121e9..0fd3aec66453 100644
--- a/sw/qa/uitest/writer_tests4/tdf135636.py
+++ b/sw/qa/uitest/writer_tests4/tdf135636.py
@@ -1,5 +1,7 @@
# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
#
+# This file is part of the LibreOffice project.
+#
# 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/.
@@ -11,39 +13,28 @@ class tdf135636(UITestCase):
def test_tdf135636(self):
- self.ui_test.load_file(get_url_for_data_file("tdf135636.odt"))
-
- document = self.ui_test.get_component()
-
- self.assertEqual(document.CurrentController.PageCount, 2)
-
- xWriterDoc = self.xUITest.getTopFocusWindow()
- xWriterEdit = xWriterDoc.getChild("writer_edit")
- self.ui_test.wait_until_child_is_available(xWriterEdit, 'PageBreak')
- xPageBreak = xWriterEdit.getChild('PageBreak')
+ with self.ui_test.load_file(get_url_for_data_file("tdf135636.odt")) as document:
- self.ui_test.execute_dialog_through_action(xPageBreak, "EDIT")
+ self.assertEqual(document.CurrentController.PageCount, 2)
- xDialog = self.xUITest.getTopFocusWindow()
+ xPageBreak = self.ui_test.wait_until_child_is_available('PageBreak')
+ with self.ui_test.execute_dialog_through_action(xPageBreak, "EDIT") as xDialog:
- xBreak = xDialog.getChild("break")
- self.assertEqual("true", get_state_as_dict(xBreak)["Selected"])
- xBreak.executeAction("CLICK", tuple())
+ xBreak = xDialog.getChild("break")
+ self.assertEqual("true", get_state_as_dict(xBreak)["Selected"])
- self.assertEqual("false", get_state_as_dict(xBreak)["Selected"])
+ xBreak.executeAction("CLICK", tuple())
- okBtn = xDialog.getChild("ok")
- self.ui_test.close_dialog_through_button(okBtn)
+ self.assertEqual("false", get_state_as_dict(xBreak)["Selected"])
- # Without the fix in place, this test would have failed with
- # AssertionError: 2 != 1
- self.assertEqual(document.CurrentController.PageCount, 1)
- self.xUITest.executeCommand(".uno:Undo")
+ # Without the fix in place, this test would have failed with
+ # AssertionError: 2 != 1
+ self.assertEqual(document.CurrentController.PageCount, 1)
- self.assertEqual(document.CurrentController.PageCount, 2)
+ self.xUITest.executeCommand(".uno:Undo")
- self.ui_test.close_doc()
+ self.assertEqual(document.CurrentController.PageCount, 2)
# vim: set shiftwidth=4 softtabstop=4 expandtab: