Index: suite_leahi/shared/scripts/configuration/utility.py =================================================================== diff -u -r75e3ab588237239452761d2ec90e8b3aec6a916b -r1a3dc7aeb6c2998c4480a9c58c522c293c1389f5 --- suite_leahi/shared/scripts/configuration/utility.py (.../utility.py) (revision 75e3ab588237239452761d2ec90e8b3aec6a916b) +++ suite_leahi/shared/scripts/configuration/utility.py (.../utility.py) (revision 1a3dc7aeb6c2998c4480a9c58c522c293c1389f5) @@ -145,7 +145,7 @@ set_value_based_on_target(names.o_PreTreatmentCreate_salineBolusVolumeControl_ValueAdjuster, 200) select_different_dropdown(names.o_PreTreatment_vitalsCombobox_BaseCombobox,config.VITALS,1) select_different_dropdown(names.o_PreTreatmentCreate_bicarbonateConcentrateComboBox_BaseComboBox,config.BICARBONATE,0) - Validatebutton = setObjectText(names.o_preTreatmentStack_Text, config.VALIDATE) + Validatebutton = setObjectText(obj = names.o_preTreatmentStack_Text, text =config.VALIDATE) squish.mouseClick(squish.waitForObject(Validatebutton)) td.td_Treatment_Parameters_Validation( vAccepted = 1, vBloodFlowRateRejectReason = 0, @@ -169,7 +169,7 @@ vHeparinBolusVolumeRejectReason = 0 ) - confirmButton = setObjectText(names.o_preTreatmentStack_Text,config.CONFIRM ) + confirmButton = setObjectText(obj = names.o_preTreatmentStack_Text,text = config.CONFIRM ) squish.mouseClick(squish.waitForObject(confirmButton)) test.endSection() Index: suite_leahi/suite.conf =================================================================== diff -u -rd0541e8a1e64248961d52dd9492e92fd79b5177a -r1a3dc7aeb6c2998c4480a9c58c522c293c1389f5 --- suite_leahi/suite.conf (.../suite.conf) (revision d0541e8a1e64248961d52dd9492e92fd79b5177a) +++ suite_leahi/suite.conf (.../suite.conf) (revision 1a3dc7aeb6c2998c4480a9c58c522c293c1389f5) @@ -1,6 +1,6 @@ AUT=leahi LANGUAGE=Python OBJECTMAPSTYLE=script -TEST_CASES=tst_solution_infusion tst_main_treatment tst_service_export_logs tst_device_settings_information_version tst_headerbar_information_popup tst_headerbar_wifi_indicator tst_device_settings_wifi tst_ultrafiltration tst_create_treatment tst_general_alarm_requirements_instruction tst_headerbar_prescription +TEST_CASES=tst_solution_infusion tst_main_treatment tst_service_export_logs tst_device_settings_information_version tst_headerbar_information_popup tst_headerbar_wifi_indicator tst_device_settings_wifi tst_ultrafiltration tst_create_treatment tst_general_alarm_requirements_instruction tst_headerbar_prescription tst_heparin VERSION=3 WRAPPERS=Qt Index: suite_leahi/tst_heparin/test.py =================================================================== diff -u -rfb27385d1c510f6d3b433ace7e2f2e7d5dda4012 -r1a3dc7aeb6c2998c4480a9c58c522c293c1389f5 --- suite_leahi/tst_heparin/test.py (.../test.py) (revision fb27385d1c510f6d3b433ace7e2f2e7d5dda4012) +++ suite_leahi/tst_heparin/test.py (.../test.py) (revision 1a3dc7aeb6c2998c4480a9c58c522c293c1389f5) @@ -92,7 +92,7 @@ utility.select_different_dropdown(names.o_PreTreatmentCreate_dialyzerTypeComboBox_BaseComboBox,config.DIALYZER_TYPE,2) utility.select_different_dropdown(names.o_PreTreatment_vitalsCombobox_BaseCombobox,config.VITALS,1) utility.select_different_dropdown(names.o_PreTreatmentCreate_bicarbonateConcentrateComboBox_BaseComboBox,config.BICARBONATE,0) - Validatebutton = utility.setObjectText(names.o_preTreatmentStack_Text, config.VALIDATE) + Validatebutton = utility.setObjectText(obj = names.o_preTreatmentStack_Text, text =config.VALIDATE) mouseClick(waitForObject(Validatebutton)) td.td_Treatment_Parameters_Validation( vAccepted = 1, vBloodFlowRateRejectReason = 0, @@ -116,7 +116,7 @@ vHeparinBolusVolumeRejectReason = 0 ) - confirmButton = utility.setObjectText(names.o_preTreatmentStack_Text, config.CONFIRM) + confirmButton = utility.setObjectText(obj = names.o_preTreatmentStack_Text, text = config.CONFIRM) mouseClick(waitForObject(confirmButton)) test.endSection()