Changelog for v1.28.0 - v1.28.1 Respect enabled/disabled switch on event-interceptor, fixes #965 (https://gitlab.com/sirenia/manatee/-/merge_requests/542) Resolve "1.27: Native InspectRec should be more robust against errors" (https://gitlab.com/sirenia/manatee/-/merge_requests/541) Issues mentioned [#967] Intercept fails with {window} markers in path reported by @jonathan (https://gitlab.com/sirenia/manatee/-/issues/967) [#965] EventInterceptor does not respect disabled/enabled switch reported by @jonathan (https://gitlab.com/sirenia/manatee/-/issues/965) [#964] 1.27: Native InspectRec should be more robust against errors reported by @los-sirenia (https://gitlab.com/sirenia/manatee/-/issues/964) Changelog for v1.
Read moreFrequently asked questions and appropriately matched answers.
Read moreWhen configuring an application for automation purposes it is often necessary to interact with the user-interface of the application in some manner. A field as concept in Cuesta represents an element in the user-interface which can be interacted with.
Read moreThis page documents the API for interacting with fields and the global objects in flows.
Read moreJavaDriver JTable A table like so: header 1 header 2 cell 1 cell 2 cell 3 cell 4 Will be serialised as follows: { "columns": [ { "header": "header 1", "index": 0 }, { "header": "header 2", "index": 1 } ], "rows": [ { "header 1": "cell 1", "header 2": "cell 2" }, { "header 1": "cell 3", "header 2": "cell 4" } ] } Within the flow (in JavaScript) the read table could be accessed;
Read moreA service module is like a built-in api module. But unlike api modules, service modules are configurable. For instance the mail service can be configured with the information necessary to connect to mail servers. This means a flow that needs to send or receive emails does not need to contain mail credentials and other sensitive information. Services are accessed via the Service module. getting access to a mail service with the configured key myMail is done as follows:
Read moreA trigger is a mechanism by which an external event may cause a flow to be invoked.
Read moreWe provide various application drivers to ease application integration or to deal with applications for which it is not possible to implement an internal CCOW ContextParticipant handling.
The drivers are custom configured for each type of application and the flows that must be supported. We support the following types of drivers:
If you have any specific requirements or need a custom driver, don’t hesitate to contact us and we’ll try our best to make it happen.
Read more