You can insert a log message into a functional test script and indicate whether it is a
message, a warning, or an error. During playback, IBM® DevOps Test UI (Test UI) inserts this information into the
log.
To insert a log message into a functional test script:
- If recording, click the Insert Script Support Commands button
on the Recording
Monitor toolbar.
If editing:
- Position the pointer in the script where you want the log message.
- Click the Insert Recording into Active Functional Test Script button
on
the product toolbar.
- Click the Insert Script Support Commands button
on the Recording
Monitor toolbar.
- Click the Log Entry tab in
the Script Support Functions dialog.
- In the Message to write to the log field,
enter the message text.
- In the Result section, select either Information,
Warning, or Error.
- Click Insert Code.
Test UI inserts code in the script based on the option you selected in the
Result section, where message
is
the text you entered:
logInfo(" message")
logWarning("
message")
logError(" message")
Note: You can pass image as an second argument to these methods. For
example, when you want to get a screen capture along with an error message, you can use the
second argument as shown in the following example:
logError("error message here",
getRootTestObject().getScreenSnapshot());
- Click Close to remove the Script Support
Functions dialog from the screen.