sc lok: cope with non 100% zoom better.
[LibreOffice.git] / uitest / writer_tests / tdf92611.py
blob0b6007bfeb6dfcec7c222fc628eab07c8ba8ec15
2 # This Source Code Form is subject to the terms of the Mozilla Public
3 # License, v. 2.0. If a copy of the MPL was not distributed with this
4 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 from uitest.framework import UITestCase
8 import time
10 class tdf92611(UITestCase):
12 def test_launch_and_close_bibliography(self):
14 self.ui_test.create_doc_in_start_center("writer")
17 self.xUITest.executeCommand(".uno:BibliographyComponent")
19 time.sleep(2)
21 self.xUITest.executeCommand(".uno:CloseWin")
23 time.sleep(2)
25 self.ui_test.close_doc()
27 # vim: set shiftwidth=4 softtabstop=4 expandtab: