Index: suite_leahi/shared/scripts/configuration/utility.py =================================================================== diff -u -rd110c822fb709cc77d0cfb48c52bca4be3a6c0c6 -ref346661b535cbf0104cec6b7aecad9176896783 --- suite_leahi/shared/scripts/configuration/utility.py (.../utility.py) (revision d110c822fb709cc77d0cfb48c52bca4be3a6c0c6) +++ suite_leahi/shared/scripts/configuration/utility.py (.../utility.py) (revision ef346661b535cbf0104cec6b7aecad9176896783) @@ -20,7 +20,7 @@ test.fail("ERROR : " + error_message) return None -def set_Object_Text(text,obj): +def setObjectText(text,obj): """ Method to set object property based on text @param text : (string) treatment parameter text @@ -92,7 +92,7 @@ if type_combo_box is not None: squish.mouseClick(squish.waitForObjectExists(object)) - type_option = get_object_from_names(set_Object_Text(obj = names.o_option_combo_box,text = type[whichTypeIndex]),error_message=f"Option {type[whichTypeIndex]} object is missing",timeout_ms=5000) + type_option = get_object_from_names(setObjectText(obj = names.o_option_combo_box,text = type[whichTypeIndex]),error_message=f"Option {type[whichTypeIndex]} object is missing",timeout_ms=5000) if type_option is not None: squish.mouseClick(type_option) return True