Get your 6-month No-Cost Opt-Out offer for Unlimited software automation!

Method SystemUtil.Write

Writes the specified string value to the standard output stream

Usage

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();

Documentation Categories

ZAPTEST

FARM

LOAD