Skip to content

TextInputStep

Namespace: Hex1b.Automation

Assembly: Hex1b.dll

A step that types a string of text, optionally with delays between keystrokes.

csharp
public sealed record TextInputStep : TestStep, IEquatable<TestStep>, IEquatable<TextInputStep>

Inheritance

ObjectTestStepTextInputStep

Implements

Constructors

TextInputStep(string, TimeSpan)

A step that types a string of text, optionally with delays between keystrokes.

Parameters:

csharp
public TextInputStep(string Text, TimeSpan DelayBetweenKeys)

Properties

DelayBetweenKeys

Returns: TimeSpan

csharp
public TimeSpan DelayBetweenKeys { get; init; }

Text

Returns: String

csharp
public string Text { get; init; }

Released under the MIT License.