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

Method SystemUtil.WriteLine

Writes the specified string value, followed by the current line terminator, to the standard output stream

Usage

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

Documentation Categories

ZAPTEST

FARM

LOAD