86f9825f25
Change-Id: I58b1fa80b6a570f8214255398f3b91f62590fd6c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92629 Tested-by: Jenkins Reviewed-by: Xisco Faulí <xiscofauli@libreoffice.org>
21 lines
588 B
Python
21 lines
588 B
Python
#
|
|
# 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
|
|
|
|
class tdf92611(UITestCase):
|
|
|
|
def test_launch_and_close_bibliography(self):
|
|
|
|
self.ui_test.create_doc_in_start_center("writer")
|
|
|
|
self.xUITest.executeCommand(".uno:BibliographyComponent")
|
|
|
|
self.xUITest.executeCommand(".uno:CloseWin")
|
|
|
|
self.ui_test.close_doc()
|
|
|
|
# vim: set shiftwidth=4 softtabstop=4 expandtab:
|