def verify_automatic_vitals_noRejection_Reason():
MAX_WAIT = 5 * 60 * 1000 # 5 minutes in seconds
test.verify(waitFor( lambda: vitalsrequest == True, MAX_WAIT), "UI Sending the request to FW")
td.td_vitals_adjustment_response(vRejectionReason=0)
td.td_vitals(systolic = 80,
diastolic = 60,
heartRate = 140 )
blood_pressure = waitForObjectExists(names.o_treatmentHome_bloodPressure_LabelValue).topText
test.compare("70"+"/"+"50", blood_pressure,"Blood pressure value should be ->"+str("80"+"/"+"60"))
heart_rate = waitForObjectExists(names.o_treatmentHome_heartBeat_LabelValue).topText
test.compare("120", heart_rate,"Heart Rate value should be ->"+str(120))