From 6e63f40dcc96fac62433fe62c5bbf7cf4378b498 Mon Sep 17 00:00:00 2001 From: Xisco Fauli Date: Sat, 14 Jan 2017 13:13:10 +0100 Subject: Check number of columns and row in the inserted table MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I6c6c9b38a9eb1a2912373008564b4838bd3fc3f8 Reviewed-on: https://gerrit.libreoffice.org/33067 Tested-by: Jenkins Reviewed-by: Xisco FaulĂ­ --- uitest/writer_tests/tdf104158.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'uitest/writer_tests') diff --git a/uitest/writer_tests/tdf104158.py b/uitest/writer_tests/tdf104158.py index fafbc24d78d1..8c0f1bdc5166 100644 --- a/uitest/writer_tests/tdf104158.py +++ b/uitest/writer_tests/tdf104158.py @@ -19,6 +19,12 @@ class tdf104158(UITestCase): xOkBtn = xInsertDlg.getChild("ok") xOkBtn.executeAction("CLICK", tuple()) + document = self.ui_test.get_component() + + tables = document.getTextTables() + self.assertEqual(len(tables[0].getRows()), 2) + self.assertEqual(len(tables[0].getColumns()), 2) + self.ui_test.execute_dialog_through_command(".uno:TableNumberFormatDialog") xNumberFormatDlg = self.xUITest.getTopFocusWindow() -- cgit