Index: shared/scripts/configuration/utility.py =================================================================== diff -u -ra4f1e264727015d92baa065dde52c33c0bc33ef3 -rb38a27119214d9af6c162d30fd284f86ba914c7e --- shared/scripts/configuration/utility.py (.../utility.py) (revision a4f1e264727015d92baa065dde52c33c0bc33ef3) +++ shared/scripts/configuration/utility.py (.../utility.py) (revision b38a27119214d9af6c162d30fd284f86ba914c7e) @@ -750,4 +750,18 @@ test.compare(str(input_field.text), "", "Input field should be empty") test.endSection() + +def get_indicators(screen_obj, txt): + """ + Verifying the busy indicators for BiCarb Pump Check and Acid Pump Check. + indicator object of expected text + @param step - (str) expected text + @return indicators - (obj) list of busy and check indicator + """ + parent_obj = object.parent(squish.waitForObjectExists(get_text_object(screen_obj,txt))) + children_obj = object.children(parent_obj) + indicator_parent = children_obj[2] + indicators = object.children(indicator_parent) + return indicators +