1 # -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 from uitest
.framework
import UITestCase
10 from uitest
.uihelper
.common
import get_url_for_data_file
12 from libreoffice
.calc
.document
import get_cell_by_position
13 from libreoffice
.uno
.propertyvalue
import mkPropertyValues
16 # Bug 37341 - Goal Seek hangs indefinitely for too many calculation steps (Formula Cell $F$110)
17 class tdf37341(UITestCase
):
18 def test_tdf37341_goalSeek(self
):
19 with self
.ui_test
.load_file(get_url_for_data_file("tdf37341.ods")) as calc_doc
:
20 xCalcDoc
= self
.xUITest
.getTopFocusWindow()
21 gridwin
= xCalcDoc
.getChild("grid_window")
22 gridwin
.executeAction("SELECT", mkPropertyValues({"CELL": "F111"}))
23 with self
.ui_test
.execute_modeless_dialog_through_command(".uno:GoalSeekDialog", close_button
="") as xDialog
:
24 xtarget
= xDialog
.getChild("target")
25 xvaredit
= xDialog
.getChild("varedit")
26 xtarget
.executeAction("TYPE", mkPropertyValues({"TEXT":"0"}))
27 xvaredit
.executeAction("TYPE", mkPropertyValues({"TEXT":"E7"}))
28 xOKBtn
= xDialog
.getChild("ok")
30 with self
.ui_test
.execute_blocking_action(xOKBtn
.executeAction
, args
=('CLICK', ()), close_button
="yes"):
34 self
.assertEqual(get_cell_by_position(calc_doc
, 0, 4, 6).getValue() > 0, True)
36 # vim: set shiftwidth=4 softtabstop=4 expandtab: