Index: shared/scripts/configuration/utility.py =================================================================== diff -u -ra679c30b3c509df89397dce8fcef3e211eb61130 -rf43f15f8f6d0268b93bcf63c00c3dce3e60dcfae --- shared/scripts/configuration/utility.py (.../utility.py) (revision a679c30b3c509df89397dce8fcef3e211eb61130) +++ shared/scripts/configuration/utility.py (.../utility.py) (revision f43f15f8f6d0268b93bcf63c00c3dce3e60dcfae) @@ -17,9 +17,9 @@ import sys import test import squish -from builtins import int as pyInt import time from configuration import config +from builtins import int as pyInt from configuration.config import * from dialin.ui.hd_simulator import HDSimulator from dialin.ui.dg_simulator import DGSimulator @@ -152,7 +152,7 @@ @param screen_title - (str) current title of the screen """ test.startSection("Verify the count down time in application") - for count_down in range(MAXIMUM_COUNTDOWN_TIME, MINIMUM_COUNTDOWN_TIME-1, -1): + for count_down in range(COUNT_DOWN_TIME_100, MINIMUM_COUNTDOWN_TIME-1, -1): if screen_title == BEGIN_PRIME_TITLE: hd_simulator.cmd_send_pre_treatment_self_test_dry_progress_data(total=300, countdown=count_down) elif screen_title == PRIMING_TITLE: @@ -185,7 +185,7 @@ test.endSection() -def page_step_indicator_verification(screen_obj, pre_treatment_step): +def verify_page_step_indicator(screen_obj, pre_treatment_step): """ Method to verify the Page Step indicators [the object on top of the screen which indicates the steps passed, current, remained] @param pre_treatment_step : indicates the Current pre-treatment step