Index: shared/scripts/configuration/utility.py =================================================================== diff -u -r32f040a40579b75d7b163840634bfb3461a13de3 -rd3cac7bb67115ce2c6a510cbaf67ab07c3a4a3b9 --- shared/scripts/configuration/utility.py (.../utility.py) (revision 32f040a40579b75d7b163840634bfb3461a13de3) +++ shared/scripts/configuration/utility.py (.../utility.py) (revision d3cac7bb67115ce2c6a510cbaf67ab07c3a4a3b9) @@ -517,7 +517,7 @@ """ Method to verify the Page Step indicators [the object on top of the screen which indicates the steps passed, current, remained] @param treatment_step : (int) indicates the Current treatment step - """ + """ test.startSection("verification of page step indicators") for page in range(len(treatment_screens)): @@ -933,7 +933,7 @@ test.compare(step_title.color.name, config.ENABLED_COLOR, " the text color must be " + str(config.ENABLED_COLOR)) elif page == post_treatment_step: - test.log("To verify the step indicators of the current post-treatment screen " + config.POST_TREATMENT_SCREENS[page]) + test.log("To verify the step indicators of the current treatment screen " + treatment_screens[page]) test.verify(squish.waitForObjectExists(get_bullet_object(screen_obj, page)).current) test.verify(not squish.waitForObjectExists(get_bullet_object(screen_obj, page)).complete) test.compare(bullet_circle_color,config.CURRENT_COLOR," the bullet color must be " + str(config.CURRENT_COLOR)) @@ -942,7 +942,7 @@ test.verify(step_title.font.bold, " the current text must be in bold") else: - test.log("To verify the step indicators of the remaining post-treatment screen " + config.POST_TREATMENT_SCREENS[page]) + test.log("To verify the step indicators of the remaining treatment screen " + treatment_screens[page]) test.verify(not squish.waitForObjectExists(get_bullet_object(screen_obj, page)).current,) test.verify(not squish.waitForObjectExists(get_bullet_object(screen_obj, page)).complete,) test.compare(step_title.color.name,config.INCOMPLETE_COLOR, " the text color must be " + str(config.INCOMPLETE_COLOR))