Version

Click(Subitem) Method

Performs a click on the specified subitem of this TestObject
Syntax
'Declaration
 
Public Overloads Overrides Sub Click( _
   ByVal subitem As Rational.Test.Ft.Script.Subitem _
) 
public override void Click( 
   Rational.Test.Ft.Script.Subitem subitem
)

Parameters

subitem
The Subitem to perform the action over.
Remarks
The UltraGroupBoxTestObject excepts the following Subitem designations.
  • AtPoint(x, y)
                UltraGroupBox1GroupBox().Click(AtPoint(198,33))
                
    

    Acts against the encased area of the GroupBox.

  • AtText("someText")

    Acts against the Caption of the GroupBox.

                UltraGroupBox1GroupBox().Click(AtText("Left Click"))
                
    

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also