summaryrefslogtreecommitdiff
path: root/sw/qa/uitest/writer_tests7/tdf141158.py
blob: e29c36418958c333a90d6dbffe443df2737e9e38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-

from uitest.framework import UITestCase
from libreoffice.uno.propertyvalue import mkPropertyValues
from uitest.uihelper.common import get_state_as_dict
from uitest.uihelper.common import select_pos
from uitest.uihelper.common import get_url_for_data_file
import time

class TestTdf141158(UITestCase):
    def test_tdf141158(self):
        # load the desired bugdoc
        self.ui_test.load_file(get_url_for_data_file("TestHiddenHeadersFooters.docx"))
        xWriterDoc = self.xUITest.getTopFocusWindow()
        xWriterEdit = xWriterDoc.getChild("writer_edit")
        document = self.ui_test.get_component()
        # open the page styles dialog and select the headers tab
        self.xUITest.executeCommand(".uno:PageStyleName")
        TemplateDialog8 = self.xUITest.getTopFocusWindow()
        xTabs = TemplateDialog8.getChild("tabcontrol")
        select_pos(xTabs, "4")
        # make the same left right page header state to off  and apply the setting
        checkSameLR = TemplateDialog8.getChild("checkSameLR")
        checkSameLR.executeAction("CLICK",tuple())
        ok = TemplateDialog8.getChild("ok")
        self.ui_test.close_dialog_through_button(ok)
        time.sleep(1)
        # go to the left header
        xWriterEdit.executeAction("GOTO", mkPropertyValues({"PAGE": "2"}))
        self.xUITest.executeCommand(".uno:JumpToHeader")
        # get the text of the header
        xPageSytle = document.getStyleFamilies().getByIndex(2)
        xHeaderText = xPageSytle.getByIndex(0).HeaderText.String
        xHeaderLeftText = xPageSytle.getByIndex(0).HeaderTextLeft.String
        # without the fix in place it was "Right Header" (lost hidden left header),
        # with the fix it should pass...
        self.assertEqual("Left Header", xHeaderLeftText)
        time.sleep(1)
        self.ui_test.close_doc()

# vim: set shiftwidth=4 softtabstop=4 expandtab: