diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2020-03-02 12:10:49 +0100 |
---|---|---|
committer | Xisco Faulí <xiscofauli@libreoffice.org> | 2020-03-02 18:07:59 +0100 |
commit | 5750575771a44d248da597a359fe6abe0c2073ef (patch) | |
tree | 5b8958defa96d85ef01755d71c0373852377ac7c /sc | |
parent | e33135518b74643e2a840955965cc4536c9ee41d (diff) |
uitest: check copy in .uno:Move
Change-Id: I916d3853500705b1037aa669374511c184402313
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89822
Tested-by: Jenkins
Reviewed-by: Xisco Faulí <xiscofauli@libreoffice.org>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/qa/uitest/calc_tests6/moveCopySheet.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sc/qa/uitest/calc_tests6/moveCopySheet.py b/sc/qa/uitest/calc_tests6/moveCopySheet.py index be9abaecb1fb..16370451e893 100644 --- a/sc/qa/uitest/calc_tests6/moveCopySheet.py +++ b/sc/qa/uitest/calc_tests6/moveCopySheet.py @@ -62,6 +62,23 @@ class moveCopySheet(UITestCase): self.assertEqual(document.Sheets[0].Name, "Sheet1") self.assertEqual(document.Sheets[1].Name, "moveName") + #Check copy option + self.ui_test.execute_dialog_through_command(".uno:Move") + xDialog = self.xUITest.getTopFocusWindow() + xCopy = xDialog.getChild("copy") + xCopy.executeAction("CLICK", tuple()) + sheetName = "moveName_2" + newName = xDialog.getChild("newName") + self.assertEqual(get_state_as_dict(newName)["Text"], sheetName) + + xOKBtn = xDialog.getChild("ok") + self.ui_test.close_dialog_through_button(xOKBtn) + + self.assertEqual(document.Sheets.getCount(), 3) + self.assertEqual(document.Sheets[0].Name, sheetName) + self.assertEqual(document.Sheets[1].Name, "Sheet1") + self.assertEqual(document.Sheets[2].Name, "moveName") + self.ui_test.close_doc() # vim: set shiftwidth=4 softtabstop=4 expandtab: |