Virtualize Extension Tool: Can I log to the console?
in Virtualize
What is the syntax (Groovy) for an extension tool to write information to the console or some other visible output in Virtualize? Thanks
0
What is the syntax (Groovy) for an extension tool to write information to the console or some other visible output in Virtualize? Thanks
Comments
Hi.
Add this import to your script
import com.parasoft.api.*;
Then use the to write a message to the console
Application.showMessage("your message")
You can find some examples of its use here, just search for "showMessage"
https://docs.parasoft.com/display/SOAVIRT9103CTP310/Extensibility+and+Scripting+Basics
Hope this helps!