Index: tst_post/test.py =================================================================== diff -u -rdda88d0c02c9a8af4b3bdea52106e6825f91ff09 -r2fd7c2532e3576a9864955d0e286ada9e35cdd55 --- tst_post/test.py (.../test.py) (revision dda88d0c02c9a8af4b3bdea52106e6825f91ff09) +++ tst_post/test.py (.../test.py) (revision 2fd7c2532e3576a9864955d0e286ada9e35cdd55) @@ -36,7 +36,7 @@ Method to obtain progress @return: Progress value """ - progress_bar = object.parent(waitForObjectExists(names.progress_bar)) + progress_bar = object.parent(waitForObjectExists(names.o_progress_bar)) progress_bar_children = object.children(progress_bar) progress_bar_val_parent = progress_bar_children[3] progress_bar_val_parents_children = object.children(progress_bar_val_parent) @@ -84,21 +84,21 @@ test.startSection("Verifying the status") if final_msg == True and final_msg_posted == True: - if object.exists(names.done_indicator): - done_indicator = waitForObject(names.done_indicator) + if object.exists(names.o_done_indicator): + done_indicator = waitForObject(names.o_done_indicator) test.compare(done_indicator.enabled, True, "Done, Final value passed") elif (final_msg == False and final_msg_posted == True) : - if object.exists(names.fail_indicator): - fail_indicator = waitForObject(names.fail_indicator) + if object.exists(names.o_fail_indicator): + fail_indicator = waitForObject(names.o_fail_indicator) test.compare(fail_indicator.enabled, True, "Failed, Final value not passed") elif (final_msg == True and final_msg_posted == False)\ or (final_msg == False and final_msg_posted == False): - if object.exists(names.busy_indicator): - busy_indicator = waitForObject(names.busy_indicator) + if object.exists(names.o_busy_indicator): + busy_indicator = waitForObject(names.o_busy_indicator) test.compare(busy_indicator.enabled, True, "Waiting for a value") test.endSection()