Structure of a Jacada BDL Script

When recording a Jacada application with Silk Performer, the resulting BDL script contains a mix of both Web/HTTP as well as Jacada protocol entries. The script is structured into HTTP traffic and user interactions:
  • HTTP traffic
    • JacCreateUser(…)
    • JacConnectUsing…(…)
  • User Interactions
    • JacDestroy(…)

Jacada Functions

A number of functions are provided to handle Jacada function calls from within Silk Performer. These functions are one-to-one wrappers of Jacada's own API. Refer to Jacada documentation for detailed information.

Following is a sample of Jacada user interactions:
  • Enter Data
    • JacSetTextData(...)
    • JacSetTableData(...)
  • Screen Transition
    • JacSendWindowData(...)
    • JacSendCommand(...)
    • JacChangeCellValue(...)
  • Verifications
    • JacCheckScreen(...)
    • JacCheckFieldValue(...)
    • JacCheckTableCell(...)