Set text - operation

  • Android
  • Apple iPhone / iPad (iOS)
  • Apple iOS Simulator
  • Apple TV (tvOS)
  • Apple tvOS Simulator
  • Browsers
  • HbbTV / Freeview Play
  • LG webOS
  • PlayStation 4/5
  • Roku (not Lite)
  • Samsung Tizen
  • VIDAA
  • Vizio SmartCast
  • Xbox (One, Series X/S)
  • Xfinity (Comcast)
  • Other Smart TVs and STBs - HTML apps

This operations sets text of an element such as a text field / input to specified string.

In HTML-based apps, Set text is supported on contenteditable elements and most of <input> types (excl. button, checkbox, color, file, hidden, image, radio, range, reset).


Set text basics

To perform this operation in the Suitest Test editor use the Set text line:

Set login information

To perform this operation in the Suitest JavaScript API use the setText command:

await assert.element('loginTextBox').exists().timeout(2000);
await assert.element('loginTextBox').setText('login@suite.st');
await assert.element('passwordTextBox').setText('myPassWord');

Set text only if a specific condition is met

You can combine the Set text operation with an Assertion and instruct Suitest to run this operation only if the condition is satisfied.

Set login information if elements are in correct state

In JavaScript API:

if (await suitest.element('loginTextBox').matches([
    PROP.HEIGHT,
    PROP.LEFT,
    PROP.TOP,
    PROP.WIDTH,
    ])) {
    await assert.element('loginTextBox').setText('login@suite.st');
}
if (await suitest.element('passwordTextBox').exists()) {
    await assert.element('passwordTextBox').setText('myPassWord');
}