We have a use case where we need to automate steps in an H5 SDK app that are not available in an M3 API.
I have attempted to set this up as a bookmark but am running into errors with the automation step. After opening the panel, a copy of keystrokes need to be simulated to process the transaction (enter, F14).
Does anyone have any pointers on how to use the automation or how else to accomplish this?
Code:
getBookmark(): IBookmark {
return {
program: 'DRS100',
table: 'DCONSI',
keyNames: 'DACONO,DACONN',
option: '17',
includeStartPanel: false,
automation: '?data=<?xml+version="1.0"+encoding="utf-8"?><sequence><step+command="KEY"+value="ENTER"+/><step+command="KEY"+value="F14"+/></sequence>'
};
}