COREUTAOPS
Use this function library to perform operations specific to flow run in Oracle Utilities Test Accelerator such as pausing a flow run for a specified time, conditional constructs to exit polling of a specific component IWS.
This section provides a list of functions in the library, along with the usage details.
waitForTime
Pauses the flow run for the specified number of minutes. The flow run is resumed after the completion of the wait time.
Usage:
waitForTime(String timeInMinutes)
waitForTime ("3")
 
Input Parameters:
timeInMinutes - Number of minutes for which the flow run needs to be paused.
 
Return Type: void
customLog
This function can be used to add custom messages to the flow run summary report. It concatenates the input parameters and adds the final concatenated message to the flow execution summary report.
Usage:
customLog(String message1,String message2)
 
Input Parameters:
message1: string that needs to be printed into to the summary report,
message2: suffix to the message1 that needs to be appended to the summary report.
Return Type: void
 
Note: If more than two strings need to be appended and printed to the output, use the appendStrings function from CORESTRINGOPS and store the output into a global variable and use the global variable as a parameter to customLog function.
If only one message needs to be printed and there is no suffix to it, then you can set #EMPTY in the second input parameter filed.