Method SystemUtil.Write
Writes the specified string value to the standard output streamUsage
Function ZAP.SystemUtil.Write(
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.Write "This is test!"
Zap.SystemUtil.ReadToEnd
JavaScript
Zap.SystemUtil.Run("java", "-classpath C:ReadWriteApp", null, true);
Zap.SystemUtil.Write("This is test!");
Zap.SystemUtil.ReadToEnd();