Method SystemUtil.WriteLine
Writes the specified string value, followed by the current line terminator, to the standard output streamUsage
Function ZAP.SystemUtil.WriteLine(
String str
)
Parameters
Str
Type: String
The value to write
Returns
No return value
Example
VBScript
Zap.SystemUtil.Run "java", "-classpath C:ReadWriteApp", null, True
Zap.SystemUtil.WriteLine "This is test!"
Zap.SystemUtil.ReadToEnd
JavaScript
Zap.SystemUtil.Run("java", "-classpath C:ReadWriteApp", null, true);
Zap.SystemUtil.WriteLine("This is test!");
Zap.SystemUtil.ReadToEnd();