VuGen Multiple Protocol Scripts Oracle NCA Function nca_edit_get_text

VuGen Multiple Protocol Scripts Oracle NCA Function nca_edit_get_text

char value[25];

        Action1.c(120): Server Message Properties: action=2  handlerClassId=0x101  handlerId=157
       Action1.c(120):             property=137 type=0x4000 value=1234567890

จากด้านบนบรรทัดนี้คุณจะเห็นว่ามี handlerID ที่มีอยู่ handlerID นี้เทียบเท่ากับ ObjectID ใน Oracle NCA ดังนั้น ID ที่ไม่ซ้ำกันนี้จึงเป็นสิ่งจำเป็นโดยนำไปใช้ กับ  nca_edit_get_text("157", value);  ซึ่งตัวเลขที่ได้มาใช้นั้นจะตรงกับ  handlerId=157 ที่  Action1.c(42): Server Message Properties 

/*  
หมายเลขบรรทัดภายใน () ในบันทึกการดำเนินการที่มี handlerId ยังระบุว่าบรรทัดของสคริปต์ส่งคืนค่า จากตัวอย่างข้างต้นปรากฏว่าบรรทัดที่ 42 ส่งคืนค่าสำหรับคอลัมน์เฟส ไปที่บรรทัด 42 ของสคริปต์และคุณจะเห็นข้อความคล้ายกับข้อความต่อไปนี้:  nca_menu_select_item("Distributions""File;Save");
*/
            nca_menu_select_item("Distributions""File;Save");

           nca_edit_get_text("157", value);
  
           lr_output_message ("The phase of Journal Import is %s", value);


/*
และเราจะนำไปใช้ร่วมกับ Oracle NCA ได้ไง จากเดิม  nca_edit_get_text("395", "1234567890"); ให้เปลี่ยนค่า "1234567890" ให้เป็น ค่า value ก็จะได้ nca_edit_get_text("395"value);
*/


Comments

Popular posts from this blog

Create Jenkins by DigitalOcean + Git Bash

How to install and configuration automation on Mac OS