Index: suite_leahi/shared/scripts/configuration/utility.py =================================================================== diff -u -r4f9e56b35635368ce440e2cfffdaba7631b5d120 -r86eb87067a913ab8f1fbaefaedc93cf00907b55c --- suite_leahi/shared/scripts/configuration/utility.py (.../utility.py) (revision 4f9e56b35635368ce440e2cfffdaba7631b5d120) +++ suite_leahi/shared/scripts/configuration/utility.py (.../utility.py) (revision 86eb87067a913ab8f1fbaefaedc93cf00907b55c) @@ -161,15 +161,15 @@ target_value = target_value # Wait for all objects - parent_obj = squish.waitForObjectExists(obj) + parent_obj = squish.waitForObject(obj) # change range as per your screen count left_arrow = findObjectById(parent_obj, "_leftArrow") right_arrow =findObjectById(parent_obj, "_rightArrow") # Read current value (supports invisible text too) - current_value = round(float(squish.findObject(obj).value),1) + current_value = round(float(squish.waitForObject(obj).value), 1) # Determine direction while current_value != float(target_value): @@ -179,7 +179,7 @@ elif current_value > float(target_value): squish.mouseClick(squish.waitForObject(left_arrow)) - current_value = round(float(squish.findObject(obj).value),1) + current_value = round(float(squish.waitForObject(obj).value), 1) test.log(f"Updated value: {current_value}")