Index: shared/scripts/configuration/utility.py =================================================================== diff -u -rbf0f91cc77deda73a01e96768c76160d71e46ddf -rb38389f9f6ed5e603368e16902671b824d8c9202 --- shared/scripts/configuration/utility.py (.../utility.py) (revision bf0f91cc77deda73a01e96768c76160d71e46ddf) +++ shared/scripts/configuration/utility.py (.../utility.py) (revision b38389f9f6ed5e603368e16902671b824d8c9202) @@ -96,7 +96,7 @@ test.startSection("Enter {}".format(entry)) for value in entry: value = builtins.int(value) - key_val = squish.waitForObject(names.keypad_input(key_value=value)) + key_val = squish.waitForObject(keypad_input(key_value=value)) squish.mouseClick(key_val) utils.waitForGUI(1) test.endSection() @@ -116,5 +116,13 @@ test.compare(input_field.text.toUtf8().constData(), "", "Input field should be empty") test.endSection() + +def vitals_reading_obj(reading): + names.o_vitals_reading["text"] = reading + return names.o_vitals_reading + +def keypad_input(key_value): + names.o_keypad_input["text"] = key_value + return names.o_keypad_input \ No newline at end of file