Salome HOME
f96832a20e3c67ad6484dcc93c3fafb1c491d662
[modules/shaper.git] / test.squish / suite_FEATURE_PARAMETERS / tst_576 / test.py
1 # Copyright (C) 2014-2023  CEA/DEN, EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 #[tested functionality] 1. Add parameter 2. Rename parameter
21
22 def main():
23     source(findFile("scripts", "common.py"))
24
25     startApplication("salome_run.sh")
26
27     activate_SHAPER()
28
29     clickButton(waitForObject(":SALOME*.Parameter_QToolButton"))
30     type(waitForObject(":Parameter_QLineEdit"), "a")
31     type(waitForObject(":Parameter_ExpressionEditor"), "3")
32     type(waitForObject(":Parameter_ExpressionEditor"), "<Return>")
33     clickButton(waitForObject(":Parameter.property_panel_ok_QToolButton"))
34
35     openItemContextMenu(waitForObject(":Object browser_XGUI_DataTree"), "Parameters (1).a = 3", 10, 10, 0)
36     activateItem(waitForObjectItem(":_QMenu", "Rename"))
37     type(waitForObject(":_QExpandingLineEdit"), "b")
38     type(waitForObject(":_QExpandingLineEdit"), "<Return>")
39
40     test.compare(waitForObjectItem(":Object browser_XGUI_DataTree", "Parameters (1).b = 3").text, "b = 3")
41
42     openItemContextMenu(waitForObject(":Object browser_XGUI_DataTree"), "Parameters (1).b = 3", 111, 5, 0)
43     activateItem(waitForObjectItem(":_QMenu", "Edit..."))
44     waitFor("object.exists(':Parameter_QLineEdit')", 20000)
45     test.compare(str(findObject(":Parameter_QLineEdit").text), "b")
46     waitFor("object.exists(':Parameter_ExpressionEditor')", 20000)
47     test.compare(str(findObject(":Parameter_ExpressionEditor").plainText), "3")
48
49     close_application()