Skip to content

editbox

Mark Humphreys edited this page Jan 29, 2017 · 1 revision

Edit boxes can be located by index, or by name.

  AutomationEditBox user = window.getEditBox(0);
  user.setText("USER1");
  AutomationEditBox user = window.getEditBox("edtBox1");
  user.setText("USER1");
Clone this wiki locally