summaryrefslogtreecommitdiff
path: root/sw/qa/uitest/writer_tests7/tdf140117.py
diff options
context:
space:
mode:
Diffstat (limited to 'sw/qa/uitest/writer_tests7/tdf140117.py')
-rw-r--r--sw/qa/uitest/writer_tests7/tdf140117.py90
1 files changed, 44 insertions, 46 deletions
diff --git a/sw/qa/uitest/writer_tests7/tdf140117.py b/sw/qa/uitest/writer_tests7/tdf140117.py
index c6244841241e..a1790e642a64 100644
--- a/sw/qa/uitest/writer_tests7/tdf140117.py
+++ b/sw/qa/uitest/writer_tests7/tdf140117.py
@@ -13,51 +13,49 @@ from uitest.uihelper.common import get_url_for_data_file
class tdf140117(UITestCase):
def test_tdf140117(self):
# load the sample file
- self.ui_test.load_file(get_url_for_data_file("tdf140117.fodt"))
- xWriterDoc = self.xUITest.getTopFocusWindow()
- xWriterEdit = xWriterDoc.getChild("writer_edit")
- document = self.ui_test.get_component()
-
- for i in range(3):
- xWriterEdit.executeAction("GOTO", mkPropertyValues({"PAGE": "2"}))
-
- self.xUITest.executeCommand(".uno:JumpToHeader")
-
- xPageSytle = document.getStyleFamilies().getByIndex(2)
- xHeaderText = xPageSytle.getByIndex(0).HeaderText.String
- xHeaderFirstText = xPageSytle.getByIndex(0).HeaderTextFirst.String
- xHeaderLeftText = xPageSytle.getByIndex(0).HeaderTextLeft.String
- xHeaderRightText = xPageSytle.getByIndex(0).HeaderTextRight.String
-
- # Option "same content on left and right pages" is false,
- # insert text "XXXX" before actual header text "left" on page 2
- if i == 0:
- type_text(xWriterEdit, "XXXX")
-
- # Option "same content on left and right pages" is true,
- # header of page 2 contains the same text as page 1
- elif i == 1:
- self.assertEqual("right", xHeaderText)
- self.assertEqual("right", xHeaderRightText)
-
- # Option "same content on left and right pages" is false again.
- # This was "right" instead of keeping the header content disabled
- # temporarily for the second interaction of the loop.
- elif i == 2:
- self.assertEqual("XXXXleft", xHeaderLeftText)
-
- self.ui_test.execute_dialog_through_command(".uno:PageDialog")
- PageDialog = self.xUITest.getTopFocusWindow();
-
- xTabs = PageDialog.getChild("tabcontrol")
- select_pos(xTabs, "4")
-
- # Change option "same content on left and right pages" for the next iteration
- Button = xTabs.getChild('checkSameLR')
- Button.executeAction("CLICK", tuple())
- ok = PageDialog.getChild("ok")
- self.ui_test.close_dialog_through_button(ok)
-
- self.ui_test.close_doc()
+ with self.ui_test.load_file(get_url_for_data_file("tdf140117.fodt")):
+ xWriterDoc = self.xUITest.getTopFocusWindow()
+ xWriterEdit = xWriterDoc.getChild("writer_edit")
+ document = self.ui_test.get_component()
+
+ for i in range(3):
+ xWriterEdit.executeAction("GOTO", mkPropertyValues({"PAGE": "2"}))
+
+ self.xUITest.executeCommand(".uno:JumpToHeader")
+
+ xPageSytle = document.getStyleFamilies().getByIndex(2)
+ xHeaderText = xPageSytle.getByIndex(0).HeaderText.String
+ xHeaderFirstText = xPageSytle.getByIndex(0).HeaderTextFirst.String
+ xHeaderLeftText = xPageSytle.getByIndex(0).HeaderTextLeft.String
+ xHeaderRightText = xPageSytle.getByIndex(0).HeaderTextRight.String
+
+ # Option "same content on left and right pages" is false,
+ # insert text "XXXX" before actual header text "left" on page 2
+ if i == 0:
+ type_text(xWriterEdit, "XXXX")
+
+ # Option "same content on left and right pages" is true,
+ # header of page 2 contains the same text as page 1
+ elif i == 1:
+ self.assertEqual("right", xHeaderText)
+ self.assertEqual("right", xHeaderRightText)
+
+ # Option "same content on left and right pages" is false again.
+ # This was "right" instead of keeping the header content disabled
+ # temporarily for the second interaction of the loop.
+ elif i == 2:
+ self.assertEqual("XXXXleft", xHeaderLeftText)
+
+ self.ui_test.execute_dialog_through_command(".uno:PageDialog")
+ PageDialog = self.xUITest.getTopFocusWindow();
+
+ xTabs = PageDialog.getChild("tabcontrol")
+ select_pos(xTabs, "4")
+
+ # Change option "same content on left and right pages" for the next iteration
+ Button = xTabs.getChild('checkSameLR')
+ Button.executeAction("CLICK", tuple())
+ ok = PageDialog.getChild("ok")
+ self.ui_test.close_dialog_through_button(ok)
# vim: set shiftwidth=4 softtabstop=4 expandtab: