Getting an Edit Control's Text in Desktop Windows Applications

Applies to TestComplete 15.63, last modified on April 23, 2024

Note: To learn how to simulate user actions over text edit box controls in web applications, see Working With Text Edit Controls in Web Applications.

While testing edit controls, you can use specific properties and methods of the corresponding program object to perform certain actions and obtain data stored in controls. You can call these methods and properties from your keyword tests, as well as from scripts. This topic describes how to work with the needed properties and methods from your scripts. However, when testing a control from your keyword test, you can use the same methods and properties calling them from keyword test operations. For more information, see Keyword Tests Basic Operations.

If you need to get a portion of the text that an edit control contains, you can, for example, select the needed text, then copy it to the clipboard (see the Copying and Pasting Text in an Edit Control in Desktop Windows Applications topic). You can retrieve the whole text the same way you would a text portion (for more information see the Getting the Selected Text in an Edit Control in Desktop Windows Applications topic). Actually, it is more convenient to get the whole text by using the wText property.

wText is a specific property that belongs to the Win32Edit object. This object is automatically associated with standard Windows edit controls during the test run. The wText property allows you to get an edit control’s text and use it to return the edit control’s text entirely. In this case, it does not matter if the text is selected or not. The following example demonstrates how you can obtain the edit control’s text:

JavaScript, JScript

function Main()
{
  var p, Edit;
  // Run Notepad
  WshShell.Run("notepad.exe", SW_SHOWNORMAL);

  // Obtain the edit object
  p = Sys.Process("NOTEPAD");
  Edit = p.Window("Notepad").Window("Edit");
  Edit.Keys("It's the oldest rule in the book");

  // Copy the edit control's text to the clipboard
  Sys.Clipboard = Edit.wText;

  // Post the clipboard content to the log
  Log.Message(Sys.Clipboard);
}

Python

def Main():
  # Run Notepad 
  WshShell.Run("notepad.exe", SW_SHOWNORMAL)

  # Obtain the edit object
  p = Sys.Process("NOTEPAD")
  Edit = p.Window("Notepad").Window("Edit")
  Edit.Keys("It's the oldest rule in the book")

  # Copy the edit control's text to the clipboard
  Sys.Clipboard = Edit.wText

  # Post the clipboard content to the log
  Log.Message(Sys.Clipboard)

VBScript

Sub Main
  Dim p, Edit
  ' Run Notepad
  Call WshShell.Run("notepad.exe", SW_SHOWNORMAL)

  ' Obtain the edit object and fill it with text
  Set p = Sys.Process("NOTEPAD")
  Set Edit = p.Window("Notepad").Window("Edit")
  Edit.Keys "It's the oldest rule in the book"
    
  ' Copy the edit control's text to the clipboard
  Sys.Clipboard = Edit.wText
  
  ' Post clipboard contents to the log
  Log.Message(Sys.Clipboard)
End Sub

DelphiScript

procedure Main;
var p, Edit:OleVariant;
begin
  // Run Notepad
  WshShell.Run('notepad.exe', SW_SHOWNORMAL);
 
  // Obtain the edit object
  p := Sys.Process('NOTEPAD');
  Edit := p.Window('Notepad').Window('Edit');
  Edit.Keys('It''s the oldest rule in the book');

  // Copy the edit control's text to the clipboard
  Sys.Clipboard := Edit.wText;

  // Post the clipboard content to the log
  Log.Message(Sys.Clipboard);
end;

C++Script, C#Script

function Main()
{
  var p, Edit;
  // Run Notepad
  WshShell["Run"]("notepad.exe", SW_SHOWNORMAL);

  // Obtain the edit object
  p = Sys["Process"]("NOTEPAD");
  Edit = p["Window"]("Notepad")["Window"]("Edit");
  Edit["Keys"]("It's the oldest rule in the book");

  // Copy the edit control's text to the clipboard
  Sys["Clipboard"] = Edit["wText"];

  // Post the clipboard content to the log
  Log["Message"](Sys["Clipboard"]);
}

See Also

Working With Edit Controls in Desktop Windows Applications
Copying and Pasting Text in an Edit Control in Desktop Windows Applications
Getting the Selected Text in an Edit Control in Desktop Windows Applications
Entering Text into an Edit Control in Desktop Windows Applications
Selecting Text Within an Edit Control in Desktop Windows Applications
wText Property (Edit Controls)
Working With Text Edit Controls in Web Applications

Highlight search results