Index: shared/scripts/configuration/utility.py =================================================================== diff -u -r82fd0a371523a464e2f53ac5a0b658ead77be235 -ra1d91d52c638b1b6291be26a26b346b90cee6bd4 --- shared/scripts/configuration/utility.py (.../utility.py) (revision 82fd0a371523a464e2f53ac5a0b658ead77be235) +++ shared/scripts/configuration/utility.py (.../utility.py) (revision a1d91d52c638b1b6291be26a26b346b90cee6bd4) @@ -86,14 +86,12 @@ """ Method to enter user desired value using keypad - @param entry: (str) User expected value + @param entry: (int) User expected value """ test.startSection("Entering {}".format(entry)) + entry = pyStr(entry) for value in entry: - value = pyInt(value) - key_val = squish.waitForObject(keypad_input(value)) - squish.mouseClick(key_val) - utils.waitForGUI(0.1) + squish.mouseClick(squish.waitForObject(keypad_input(value))) test.endSection() @@ -336,15 +334,5 @@ test.compare(ven_min, ven_low, "Actual Venous range minimum value: {} is equal to Expected value: {}".format(ven_min, ven_low)) test.endSection() - -def enter_keypad_value_bphr(entry): - """ - Method to enter user desired - value using keypad - @param entry: (str) User expected value - """ - test.startSection("Entering {}".format(entry)) - entry = pyStr(entry) #type casted into string format - for value in entry: - squish.mouseClick(squish.waitForObject(keypad_input(value))) - test.endSection() \ No newline at end of file + +