SwfObject Object
Description
A standard .NET Windows Forms object.
Operations
The sections below list the built-in methods and properties that you can use as operations for the SwfObject object.
Note: You can also view a list and descriptions of the SwfObject description properties, for use in object repository descriptions, programmatic descriptions, checkpoint and output value steps, and as argument values for the GetTOProperty and GetROProperty methods.
Methods
![]() | Saves a screen capture of the object as a .png or .bmp image using the specified file name. |
![]() | Checks whether the actual value of an item matches the expected value. |
![]() | Checks whether the actual value of the specified object property matches the specified expected value within the specified timeout. |
![]() | Returns the collection of child objects contained within the object. |
![]() | Returns the collection of properties and current values from the object in the application. |
![]() | Clicks an object. |
![]() | Double-clicks an object |
![]() | Performs the 'drag' part of a drag-and-drop operation. |
![]() | Performs the 'drop' part of a drag-and-drop operation. |
![]() | Simulates an event on a .NET object. |
![]() | Returns the tooltip text of the error icon associated with the object. |
![]() | Returns the current value of the description property from the object in the application. |
![]() | Checks whether the specified text string is contained in the specified window area. |
![]() | Returns the collection of properties and values used to identify the object. |
![]() | Returns the value of the specified description property from the test object description. |
![]() | Highlights the object in the application. |
![]() | Returns the text from the specified area. |
![]() | Horizontally scrolls an object that has embedded scroll bars. |
![]() | Moves the mouse pointer to the designated position over the object. |
![]() | Retrieves the current value of an item and stores it in a specified location. |
![]() | Instructs OpenText Functional Testing to re-identify the object in the application the next time a step refers to this object. |
![]() | Sets the value of the specified description property in the test object description. |
![]() | Returns a string that represents the test object. |
![]() | Types the specified string in the object. |
![]() | Vertically scrolls an object that has embedded scroll bars. |
![]() | Waits until the specified object property achieves the specified value or exceeds the specified timeout before continuing to the next step. |
Properties
![]() | Checks whether the object currently exists in the open application. |
![]() | Accesses the native methods and properties of the object. |
Click Method
Description
Clicks an object.
Syntax
object.Click [X], [Y], [BUTTON]
Arguments
Parameter | Description |
---|---|
X |
Optional. An integer value. The x-coordinate of the click. Note that the specified coordinates are relative to the upper left corner of the object. The default value is the center of the object.
|
Y |
Optional. An integer value. The y-coordinate of the click. Note that the specified coordinates are relative to the upper left corner of the object. The default value is the center of the object. Tip: You can enter micNoCoordinate for the x and y argument values if you want to enter a value for the button argument without specifying x- and y- coordinates for the click. Default value = -9999 |
BUTTON |
Optional. A predefined constant or number. The mouse button used to click the object. Default value = micLeftBtn |
Return Type
None
Example
DblClick Method
Description
Double-clicks an object
Syntax
object.DblClick X, Y, [BUTTON]
Arguments
Parameter | Description |
---|---|
X |
Required. An integer value. The x-coordinate of the double-click. Note that the specified coordinates are relative to the upper left corner of the object. |
Y |
Required. An integer value. The y-coordinate of the double-click. Note that the specified coordinates are relative to the upper left corner of the object. |
BUTTON |
Optional. A predefined constant or number. The mouse button used to double-click the object.
|
Return Type
None
Example
Drag Method
Description
Performs the 'drag' part of a drag-and-drop operation.
Syntax
object.Drag X, Y, [BUTTON]
Arguments
Parameter | Description |
---|---|
X |
Required. An integer value. The coordinates within the window from which the object is dragged. Note that the specified coordinates are relative to the upper left corner of the object. |
Y |
Required. An integer value. The coordinates within the window from which the object is dragged. Note that the specified coordinates are relative to the upper left corner of the object. |
BUTTON |
Optional. A predefined constant or number. The mouse button used to drag the object.
|
Return Type
None
Example
Drop Method
Description
Performs the 'drop' part of a drag-and-drop operation.
Syntax
object.Drop X, Y, [BUTTON]
Arguments
Parameter | Description |
---|---|
X |
Required. An integer value. The coordinates of the object onto which the object is dropped. Note that the specified coordinates are relative to the upper left corner of the object. |
Y |
Required. An integer value. The coordinates of the object onto which the object is dropped. Note that the specified coordinates are relative to the upper left corner of the object. |
BUTTON |
Optional. A predefined constant or number. The button that is released to drop the object. Default value = micLeftBtn |
Return Type
None
Example
FireEvent Method
Description
Simulates an event on a .NET object.
Syntax
object.FireEvent (EventName)
Arguments
Parameter | Description |
---|---|
EventName |
Required. A Variant. The name of the event to simulate. The list of possible events depends on the object. |
Required. None The Args argument is passed to the constructor of the event's EventArgs object or the implementing class. Enter the values in a comma separated list. If no event arguments are required, you do not need to supply a value for the argument. |
Return Type
None.
IMPORTANT
The event is sent to all listeners of the .NET object and does not affect the .NET object itself. For example, simulating a click event does not actually perform the click.
Example
GetErrorProviderText Method
Description
Returns the tooltip text of the error icon associated with the object.
Syntax
object.GetErrorProviderText
Return Type
A String value.
If no error provider control currently exists for the object, the method returns an empty string.
Example
GetTextLocation Method
Description
Checks whether the specified text string is contained in the specified window area.
Syntax
object.GetTextLocation (TextToFind, Left, Top, Right, Bottom, [MatchWholeWordOnly])
Arguments
Parameter | Description |
---|---|
TextToFind |
Required. A String value. The text string you want to locate. |
Left |
Required. A Variant. The left coordinate of the search area within the window or screen, as a long integer. |
Top |
Required. A Variant. The top coordinate of the search area within the window or screen, as a long integer. |
Right |
Required. A Variant. The right coordinate of the search area within the window or screen, as a long integer. |
Bottom |
Required. A Variant. Note: Set the Left, Top, Right, and Bottom coordinates to -1 to search for the text string within the object's entire window. |
MatchWholeWordOnly |
Optional. A Boolean value. If True, the method searches for occurrences that are whole words only and not part of a larger word. If False, the method does not restrict the results to occurrences that are whole words only. Default value = True |
Return Type
A Boolean value.
Indicates whether the text was found in the specified coordinates. Additionally, if the text is found, this method returns the coordinates of the rectangle containing the first instance of the text into the Left, Top, Right, and Bottom arguments.
IMPORTANT
- The text to capture must be visible in the application window when the step runs.
- This method returns True only if the TextToFind argument value is found within a single line in the specified area. The text search restarts on each line of text.
- If the TextToFind argument value includes a space, then this method searches for that text as whole words, regardless of the value set in the MatchWholeWords argument. For example, if you search for "a b" and the text "bla bla" exists, the method will still return False. However, if the MatchWholeWords argument is set to False, then a search for "la" in an area where "bla bla" exists, would return True.
- If the text is found (return value = True) and if the Left, Top, Right, and Bottom arguments are supplied as variables, then the method also returns the exact coordinates of the specified text to the supplied arguments (the returned coordinates overwrite the supplied ones).
- The results of this method may be different depending on the settings selected in the Text Recognition pane of the Options dialog box (Tools menu > Options item > GUI Testing node > Text Recognition node).
- The results of this method may be different in different run sessions depending on the operating system version you are using, service packs you have installed, other installed toolkits, or the APIs used in your application. Therefore, when possible, it is highly recommended to use the GetROProperty Method to retrieve the value of the text (or equivalent) property from an object in your application instead of using the GetTextLocation method.
- By default, when OpenText Functional Testing captures text for a text/text area checkpoint or output value step using the GetText, GetTextLocation, or GetVisibleText methods, it tries to retrieve the text directly from the object using a Windows API-based mechanism. If OpenText Functional Testing cannot capture the text this way (for example, because the text is part of a picture), it tries to capture the text using an OCR (optical character recognition) mechanism. For details about changing this behavior, see the Can QuickTest Professional Text Recognition behavior be modified Knowledgebase article (number KM202721).
Example
GetVisibleText Method
Description
Returns the text from the specified area.
Syntax
object.GetVisibleText ([Left], [Top], [Right], [Bottom])
Arguments
Parameter | Description |
---|---|
Left |
Optional. A long integer value. The left coordinate of the search area within the object's window. Default value = -1 |
Top |
Optional. A long integer value. The top coordinate of the search area the object's window. Default value = -1 |
Right |
Optional. A long integer value. The right coordinate of the search area within the object's window. Default value = -1 |
Bottom |
Optional. A long integer value. The bottom coordinate of the search area a within the object's window. Note: If the Left, Top, Right, and Bottom arguments are not specified, the method returns all of the text within the visible part of the specified object. Default value = -1 |
Return Type
A String value.
IMPORTANT
- The text to capture must be visible in the application window when the step runs.
- The area is defined by pairs of coordinates that designate two diagonally opposite corners of a rectangle.
- The results of this method may be different depending on the settings selected in the Text Recognition pane of the Options dialog box (Tools menu > Options item > GUI Testing tab > Text Recognition node).
- The results of this method may be different in different run sessions depending on the operating system version you are using, service packs you have installed, other installed toolkits, or the APIs used in your application. Therefore, when possible, it is highly recommended to use the GetROProperty Method to retrieve the value of the text (or equivalent) property from an object in your application instead of using the GetVisibleText method.
- By default, when OpenText Functional Testing captures text for a text/text area checkpoint or output value step using the GetText, GetTextLocation, or GetVisibleText methods, it tries to retrieve the text directly from the object using a Windows API-based mechanism. If OpenText Functional Testing cannot capture the text this way (for example, because the text is part of a picture), it tries to capture the text using an OCR (optical character recognition) mechanism. For details about changing this behavior, see the Can QuickTest Professional Text Recognition behavior be modified Knowledgebase article (number KM202721).
Example
HScroll Method
Description
Horizontally scrolls an object that has embedded scroll bars.
Syntax
object.HScroll (Option, [Item])
Arguments
Parameter | Description | ||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Option |
Required. A long integer value. Indicates the direction and increment-type to scroll. See the Constants table, below.
| ||||||||||||||||||||||||||||||||
Item |
Optional. A long integer value.
Default value = 1 |
Return Type
None.
IMPORTANT
An embedded scroll bar is a scroll bar that uses WS_VSCROLL and/or WS_HSCROLL styles. This scroll bar is not a separate control and therefore is not recognized as a SwfScrollBar object.
Example
MouseMove Method
Description
Moves the mouse pointer to the designated position over the object.
Syntax
object.MouseMove X, Y
Arguments
Parameter | Description |
---|---|
X |
Required. An integer value. The position of the mouse pointer, expressed as x-coordinates (in pixels). Note that the specified coordinates are relative to the upper left corner of the object. |
Y |
Required. An integer value. The position of the mouse pointer, expressed as y-coordinates (in pixels). Note that the specified coordinates are relative to the upper left corner of the object. |
Return Type
None
Example
Type Method
Description
Types the specified string in the object.
Syntax
object.Type KeyboardInput
Arguments
Parameter | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
KeyboardInput |
Required. A String value.
The text string and/or constants representing non-alphanumeric keys.
The following constants are available:
|
Return Type
None
IMPORTANT
Although the Type method is supported for most objects, if you enter a Type statement for an object in which a user cannot enter text, the method has no visual effect.
Example
VScroll Method
Description
Vertically scrolls an object that has embedded scroll bars.
Syntax
object.VScroll (Option, [Item])
Arguments
Parameter | Description | ||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Option |
Required. A long integer value. Indicates the direction and increment-type to scroll. See the Constants table, below.
| ||||||||||||||||||||||||||||||||
Item |
Optional. A long integer value.
Default value = 1 |
Return Type
None.
IMPORTANT
An embedded scroll bar is a scroll bar that uses WS_VSCROLL and/or WS_HSCROLL styles. This scroll bar is not a separate control and therefore is not recognized as SwfScrollBar object.
Example
See also: