Welcome to the new Parasoft forums! We hope you will enjoy the site and try out some of the new features, like sharing an idea you may have for one of our products or following a category.
Virtualize Extension Tool: Can I log to the console?
jefftuckerbofa
Posts: 234 ✭
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
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+BasicsHope this helps!
0