FlexCalendar Object
Note: Following the retirement of the Adobe Flash Player, UFT One no longer supports the Flex Add-in out of the box.
If you require the Flex Add-in, contact OpenText Support.
Description
A Flex calendar control.
Operations
The sections below list the built-in methods and properties that you can use as operations for the FlexCalendar object.
Note: You can also view a list and descriptions of the FlexCalendar 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
CaptureBitmap | Saves a screen capture of the object as a .png or .bmp image using the specified file name. |
Check | Checks whether the actual value of an item matches the expected value. |
CheckProperty | Checks whether the actual value of the specified object property matches the specified expected value within the specified timeout. |
ChildObjects | Returns the collection of child objects contained within the object. |
GetAllROProperties | Returns the collection of properties and current values from the object in the application. |
Click | Clicks an object. |
DblClick | Double clicks an object. |
GetROProperty | Returns the current value of the description property from the object in the application. |
GetTOProperties | Returns the collection of properties and values used to identify the object. |
GetTOProperty | Returns the value of the specified description property from the test object description. |
Highlight | Highlights the object in the application. |
Output | Retrieves the current value of an item and stores it in a specified location. |
RefreshObject | Instructs UFT One to re-identify the object in the application the next time a step refers to this object. |
SetDate | Sets the calendar to the specified date and/or date range. |
SetTOProperty | Sets the value of the specified description property in the test object description. |
ToString | Returns a string that represents the test object. |
WaitProperty | Waits until the specified object property achieves the specified value or exceeds the specified timeout before continuing to the next step. |
Properties
Exist | Checks whether the object currently exists in the open application. |
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. Default value = -9999 |
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. 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
'The following example uses the Click method to click 'the OK button, at coordinates 15,20. With Browser("Browser").Page("Page").FlexWindow("AllControls") .FlexButton("OK").Click 15, 20, micLeftBtn End With
DblClick Method
Description
Double 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. Default value = -9999 |
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. 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
'The following example uses the Click method to click 'the OK button, at coordinates 15,20. With Browser("Browser").Page("Page").FlexWindow("AllControls") .FlexButton("OK").DblClick 15, 20, micLeftBtn End With
SetDate Method
Description
Sets the calendar to the specified date and/or date range.
Syntax
object.SetDate (Date)
Arguments
Parameter | Description |
---|---|
Date |
Required. A String value. A string, in the format d-m-yyyy where d is the one- or two-digit day, m is the three-character month abbreviation or the one- or two-digit month number (1-12), and yyyy is the full four-digit year. For example, 23-May-2011. Specify date range values in the format [StartDate - EndDate]. For example: [27-May-2011 - 12-Jun-2011]. Dates and date ranges can be separated by a semicolon (;). For example 23-May-2011;25-May-2011;[27-May-2011 - 12-Jun-2011];16-Jun-2011. |
Return Type
None.
IMPORTANT
Date ranges can be used only with the Flex DateChooser control, and only if the FlexCalendar test object allows (supports) multiple date selection.
Example
'The following example uses the SetDate method to set a date 'in a calendar, and then extend the date to select a date 'range. With Browser("Browser").Page("Page").FlexWindow("AllControls") .FlexCalendar("FlexCalendar").SetDate "4-Mar-2012" .FlexCalendar("FlexCalendar").SetDate "[4-Mar-2012 - 13-Mar-2012];21-Mar-2012;22-Mar-2012" End With
See also: