Index: ssts-web/src/test/java/test/forgon/disinfectsystem/selenium3/testscript/TestMainProcess.java =================================================================== diff -u -r34186 -r34195 --- ssts-web/src/test/java/test/forgon/disinfectsystem/selenium3/testscript/TestMainProcess.java (.../TestMainProcess.java) (revision 34186) +++ ssts-web/src/test/java/test/forgon/disinfectsystem/selenium3/testscript/TestMainProcess.java (.../TestMainProcess.java) (revision 34195) @@ -1063,13 +1063,10 @@ //录入使用记录 Utils.driver.navigate().refresh(); personalDesktopProxy.go_use_record(); - useRecordProxy.add_use_record(hospitalNum, treatmentNum, circuitNurse, operationRoom,patientName, patientAge, patientSex, + String result = useRecordProxy.add_use_record(hospitalNum, treatmentNum, circuitNurse, operationRoom,patientName, patientAge, patientSex, patientArea, departNameOfPatient, patientRoom, patientBed, patientIDCard, doctorName, operation, operationScheduleId, visitTimes, specialInfection, remark, packingBarcodes); - //审核并生成申请单 - useRecordProxy.switch_to_use_record_frame(); - String result = useRecordProxy.review_and_generate_appliction(patientName); Assert.assertTrue(result.contains(expect)); } Index: ssts-web/src/test/resources/test/forgon/disinfectsystem/selenium/config/all/testcase_data.json =================================================================== diff -u -r34186 -r34195 --- ssts-web/src/test/resources/test/forgon/disinfectsystem/selenium/config/all/testcase_data.json (.../testcase_data.json) (revision 34186) +++ ssts-web/src/test/resources/test/forgon/disinfectsystem/selenium/config/all/testcase_data.json (.../testcase_data.json) (revision 34195) @@ -500,7 +500,7 @@ "specialInfection":"甲肝", "remark":"自动化测试——录入使用记录(test_main_process_of_custom_tousse_not_recycling)" }, - "expect":"申请成功" + "expect":"保存成功" }, "test_apply_combo_tousse": { "apply_user":{ Index: ssts-web/src/test/java/test/forgon/disinfectsystem/selenium3/page/apply/ApplyHandle.java =================================================================== diff -u -r34190 -r34195 --- ssts-web/src/test/java/test/forgon/disinfectsystem/selenium3/page/apply/ApplyHandle.java (.../ApplyHandle.java) (revision 34190) +++ ssts-web/src/test/java/test/forgon/disinfectsystem/selenium3/page/apply/ApplyHandle.java (.../ApplyHandle.java) (revision 34195) @@ -74,7 +74,7 @@ * @param tousseName */ public void input_tousse_name(String tousseName){ - input_text(applyPage.get_tousse_name(),tousseName+Keys.DOWN); + input_text(applyPage.get_tousse_name(),Keys.DOWN+tousseName); } /** @@ -355,7 +355,7 @@ * 输入自定义器械包材料名称 */ public void input_custom_tousse_material(String materialName){ - input_text(applyPage.get_custom_tousse_material(), materialName+Keys.DOWN); + input_text(applyPage.get_custom_tousse_material(), Keys.DOWN+materialName); } /**