Index: suite_leahi/shared/scripts/configuration/utility.py =================================================================== diff -u -r758807fd328229cd72d57616119fd42914bbb412 -r643f135e96627fbedf3d97785ae5f24b7b255986 --- suite_leahi/shared/scripts/configuration/utility.py (.../utility.py) (revision 758807fd328229cd72d57616119fd42914bbb412) +++ suite_leahi/shared/scripts/configuration/utility.py (.../utility.py) (revision 643f135e96627fbedf3d97785ae5f24b7b255986) @@ -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,11 +179,11 @@ 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}") - test.log(f"✅ Target value reached: {current_value}") + test.log(f"✅ Target value reached: {current_value}") def select_different_dropdown(object,type,whichTypeIndex): """