SAPTable Object
Description
Presses and holds the object.
IMPORTANT
Each cell in the table or grid can contain SAP Web or Web objects.
Operations
The sections below list the built-in methods and properties that you can use as operations for the SAPTable object.
Note: You can also view a list and descriptions of the SAPTable 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
ActivateCell | Double-clicks the cell specified by row and column. |
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. |
ChildItem | Returns a test object from the cell by type and index. |
ChildItemCount | Returns the number of objects of a specific type in a cell. |
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 the object. |
ColumnCount | Return the number of columns in a specified row. |
DoubleClick | Clicks on the object twice. |
Drag | Performs the 'drag' part of a drag and drop operation. |
Drop | Performs the 'drop' part of a drag and drop operation. |
Supported in UFT One 24.2 and later | Clears the selection of the specified row only. |
Supported in UFT One 24.2 and later | Selects the specified row in the table in addition to any rows already selected. |
FindRowByCellContent | Retrieves the first row of the cell in the given column whose content matches the specified data. |
FireEvent | Triggers an event. |
GetCellData | Returns the text for a specified cell. |
Returns a cell's content from a row with specific content in another cell. | |
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. |
HoverTap | When hover is supported, places the pointer on the object. Otherwise, taps the object. |
LongPress | Presses and holds the object. |
MiddleClick | Middle-clicks the object. |
OpenPossibleEntries | Opens a list of possible entries for a specified cell. |
Output | Retrieves the current value of an item and stores it in a specified location. |
Pan | Perform a pan gesture. |
Pinch | Perform a pinch gesture. |
RefreshObject | Instructs UFT One to re-identify the object in the application the next time a step refers to this object. |
RightClick | Right-clicks the object. |
RowCount | Returns the number of rows in a table. |
SelectCell | Clicks the item in the cell, if one exists. |
SelectItemInCell | Clicks the specified item in the specified cell. |
SetCellData | Sets the data of the cell specified by row and column. |
SetTOProperty | Sets the value of the specified description property in the test object description. |
Submit | Submits a form. |
Swipe | Swipes the object. |
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. |
Object | Accesses the native methods and properties of the object. |
ActivateCell Method
Description
Double-clicks the cell specified by row and column.
Syntax
object.ActivateCell Row, Column
Arguments
Parameter | Description |
---|---|
Row |
Required. A long integer value. Indicates the row number. The first row in the table is 1 (Note that if the table has a column header row, it is counted as the first row in the table.) |
Column |
Required. A long integer value. Indicates the column number. The first column in the table is 1. |
Return Type
None
Example
'The following example uses the ActivateCell method to double-click the object in the cell 'in the 5th row and 4th column in the "1x1" SAP table. Browser("ITS System Informati").Page("Table control").SAPTable("1x1").ActivateCell 5, 4
ChildItem Method
Description
Returns a test object from the cell by type and index.
Syntax
object.ChildItem (Row, Column, MicClass, Index)
Arguments
Parameter | Description |
---|---|
Row |
Required. A long integer value. The row number where the cell is located. The first row in the table is 1. (Note that if the table has a column header row, it is counted as the first row in the table.) |
Column |
Required. A long integer value. The column number where the cell is located. The first column in the table is 1. |
MicClass |
Required. A String value. The test object class. |
Index |
Required. A long integer value. Index of the object of the specified TO_Class in the cell. It is used to specify the desired element when there is more then one object of type TO_Class in the cell. The first object has an index of 0. |
Return Type
An Object.
Example
'The following example uses the ChildItem method to set the first edit box in the cell in 'the 5th row, 4th column in the "1x1" table to "sometext". Dim SAPEdit Set SAPEdit = Browser("ITS System Informati").Page("Table control").SAPTable("1x1").ChildItem(5, 4, "SapEdit", 0) SAPEdit.Set "sometext"
ChildItemCount Method
Description
Returns the number of objects of a specific type in a cell.
Syntax
object.ChildItemCount (Row, Column, MicClass)
Arguments
Parameter | Description |
---|---|
Row |
Required. A long integer value. The row number where the cell is located. The first row in the table is 1. (Note that if the table has a column header row, it is counted as the first row in the table.) |
Column |
Required. A long integer value. The column number where the cell is located. The first column in the table is 1. |
MicClass |
Required. A String value. The test object class. |
Return Type
A long integer value.
Example
'The following example uses the ChildItemCount method to count the number of edit boxes in 'a cell in the "1x1" table. Dim NumEdits Set NumEdits = Browser("ITS System Informati").Page("Table control").SAPTable("1x1").ChildItemCount(5, 4, "SapEdit")
Click Method
Description
Clicks the object.
Syntax
object.Click [x], [y], [BUTTON]
Arguments
Parameter | Description |
---|---|
x |
Optional. A long 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. A long 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
'The following example uses the Click method on the "Manufacturer" edit box. Browser("ITS System Informati").Page("User Interface_7").SAPEdit("Manufacturer").Click
'The following example uses the Click method to click the "SAP Business" button 'in the "SAPGUI for HTML" page. Browser("SAPGUI for HTML").Page("SAPGUI for HTML").SAPFrame("SAP Easy Access").SAPButton("SAP Business").Click
ColumnCount Method
Description
Return the number of columns in a specified row.
Syntax
object.ColumnCount (Row)
Arguments
Parameter | Description |
---|---|
Row |
Required. A long integer value. The row number for which you want to retrieve the column count. The first row in the table is 1. (Note that if the table has a column header row, it is counted as the first row in the table.) |
Return Type
A long integer value.
Example
'The following example uses the ColumnCount method to determine the number of columns in 'the fifth row of the "1x1" table. NumCols = Browser("ITS System Informati").Page("Table control").SAPTable("1x1").ColumnCount(5)
DoubleClick Method
Description
Clicks on the object twice.
Syntax
object.DoubleClick ([interval], [x], [y])
Arguments
Parameter | Description |
---|---|
interval |
Optional. A double floating value. The number of seconds between the two clicks. The default value is 0.2 seconds. |
x |
Optional. A long integer value. The x-coordinate of the click. 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. A long integer value. The y-coordinate of the click. 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 |
Return Type
None.
IMPORTANT
- This method is supported as long as the Web site being tested is run on a mobile device on Digital Lab, and the test object implements this gesture. Using this method on desktop browsers may generate warnings, even if you are using a mobile emulator.
- If you are testing a web or hybrid application on a mobile device, this method is equivalent to performing the DoubleTap gesture.
Example
'The following example uses the DoubleClick method to click the "SAP Business" button 'in the "SAPGUI for HTML" page. Browser("SAPGUI for HTML").Page("SAPGUI for HTML").SAPFrame("SAP Easy Access").SAPButton("SAP Business").DoubleClick
Drag Method
Description
Performs the 'drag' part of a drag and drop operation.
Syntax
object.Drag [x], [y], [BUTTON], [Modifier]
Arguments
Parameter | Description |
---|---|
x |
Optional. A long integer value. Default value = -9999 |
y |
Optional. A long integer value. Default value = -9999 |
BUTTON |
Optional. A predefined constant or number. Default value = micLeftBtn |
Modifier |
Optional. A String value. Default value = 0 |
Return Type
None
Drop Method
Description
Performs the 'drop' part of a drag and drop operation.
Syntax
object.Drop [x], [y]
Arguments
Parameter | Description |
---|---|
x |
Optional. A long integer value. Default value = -9999 |
y |
Optional. A long integer value. Default value = -9999 |
Return Type
None
ExtendDeSelectRow Method
Supported in UFT One 24.2 and later
Description
Clears the selection of the specified row only.
Syntax
object.ExtendDeSelectRow (Row)
Arguments
Parameter | Description |
---|---|
Row |
Required. A long integer value. Indicates the row number. The first row in the table is 1 (Note that if the table has a column header row, it is counted as the first row in the table.) |
Return Type
A Boolean value.
IMPORTANT
This method is relevant only for table controls that support selecting multiple rows.
Example
'The following example deselects a row in a multi-select table, leaving any other row selections unchanged. Browser("SAP R/3 System").Page("SAP R/3 System").SAPFrame("SAP R/3 System").SAPTable("Title of the Table").ExtendDeSelectRow 36
ExtendSelectRow Method
Supported in UFT One 24.2 and later
Description
Selects the specified row in the table in addition to any rows already selected.
Syntax
object.ExtendSelectRow (Row)
Arguments
Parameter | Description |
---|---|
Row |
Required. A long integer value. Indicates the row number. The first row in the table is 1 (Note that if the table has a column header row, it is counted as the first row in the table.) |
Return Type
A Boolean value.
IMPORTANT
This method is relevant only for table controls that support selecting multiple rows.
You can use this method to select a row also if no other rows are selected.
Example
'The following example selects an additional row in a multi-select table. Browser("SAP R/3 System").Page("SAP R/3 System").SAPFrame("SAP R/3 System").SAPTable("Title of the Table").ExtendSelectRow 39
FindRowByCellContent Method
Description
Retrieves the first row of the cell in the given column whose content matches the specified data.
Syntax
object.FindRowByCellContent (Col, CellText, [StartFromRow])
Arguments
Parameter | Description |
---|---|
Col |
Required. A long integer value. The column number in which to search for the specified string. The first column in the table is 1. |
CellText |
Required. A String value. The string for which to search. |
StartFromRow |
Optional. A long integer value. The row in which to begin the search. The first row in the table is 1. Default value = 1 |
Return Type
A long integer value.
If no content matches the specified value, the return value is NULL.
IMPORTANT
If the browser is exposed to only the visible rows, only these rows will be included in the search.
FireEvent Method
Description
Triggers an event.
Syntax
object.FireEvent EventName, [x], [y], [BUTTON]
Arguments
Parameter | Description |
---|---|
EventName |
Required. A String value. The name of the event to trigger. All events exposed by the Dynamic HTML (DHTML) Object Model are supported. Refer to the DHTML Events section of the MSDN Library documentation for further information. |
x |
Optional. A long integer value. The x- coordinate, relative to the upper left corner of the object. Default value = -9999 |
y |
Optional. A long integer value. The y- coordinate, relative to the upper left corner of the object. Default value = -9999 |
BUTTON |
Optional. A predefined constant or number. Default value = micLeftBtn |
Return Type
None
Example
'The following example uses the FireEvent method to simulate the "onmouseover" event 'on the "Tools" button. Browser("SAP R/3 System").Page("SAP R/3 System").SAPFrame("SAP R/3 System").SAPButton("Tools").FireEvent "onmouseover"
GetCellData Method
Description
Returns the text for a specified cell.
Syntax
object.GetCellData (Row, Column)
Arguments
Parameter | Description |
---|---|
Row |
Required. A long integer value. The row number where the cell is located. The first row in the table is 1. (Note that if the table has a column header row, it is counted as the first row in the table.) |
Column |
Required. A long integer value. The column number where the cell is located. The first column in the table is 1. |
Return Type
A String value.
Example
'The following example uses the GetCellData method to retrieve the contents of the cell 'located in row 5, column 4 Dim Info Set Info = Browser("ITS System Informati").Page("Table control").SAPTable("1x1").GetCellData(5, 4)
GetCellDataEx Method
Description
Returns a cell's content from a row with specific content in another cell.
This method performs the equivalent of FindRowByCellContent and GetCellData, retrieving the content of the specified column from the first row found with the specified content.
Syntax
object.GetCellDataEx (Column, ByColumn, ByValue, [StartFromRow])
Arguments
Parameter | Description |
---|---|
Column |
Required. A long integer value. The column number where the cell is located. The first column in the table is 1. |
ByColumn |
Required. A long integer value. The column number in which to search for the value specified in the ByValue argument. The first column in the table is 1. |
ByValue | Required. A String value. The value for which to search in the column specified in the ByColumn argument. |
StartFromRow |
Optional. A long integer value. The row in which to begin the search. The first row in the table is 1. Default value = 1 |
Return Type
A String value.
Example
'The following example uses the GetCellDataEx method to retrieve the contents of the cell 'in column 1 from a row with "collapsedPlus" in column 2, starting from row 3. 'Note that if there are several rows that match the search criteria, 'UFT One retrieves cell content in the first row that matches the criteria. cellcontent=Browser("Test of Input Behavior").Page("SAPTable").SAPTable("Change Status").GetCellDataEx(1,2,"collapsedPlus",3) If cellcontent="TreeElement 7" Then Reporter.ReportEvent micPass, "GetCellDataEx start from", "Passed" else Reporter.ReportEvent micFail, "GetCellDataEx start from", "Didn't find, cellcontent is "&cellcontent&", expected TreeElement 7" End If
HoverTap Method
Description
When hover is supported, places the pointer on the object. Otherwise, taps the object.
Syntax
object.HoverTap ([x], [y])
Arguments
Parameter | Description |
---|---|
x |
Optional. A long integer value. The x-coordinate of the hover point or tap. 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. A long integer value. The y-coordinate of the hover point or tap. 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 |
Return Type
None.
IMPORTANT
This method is supported as long as the Web site being tested is run on a mobile device on Digital Lab, and the test object implements this gesture. Using this method on desktop browsers may generate warnings, even if you are using a mobile emulator.
Example
The following example uses the HoverTap method on a form. 'When hover is supported, such as on a desktop, a hover action is performed. 'When hover is not supported, such as on a mobile device, a tap is performed instead. Browser("New Page").Page("New Page").WebElement("html tag:=Form").HoverTap
LongPress Method
Description
Presses and holds the object.
Syntax
object.LongPress [duration], [x], [y]
Arguments
Parameter | Description |
---|---|
duration |
Optional. A double floating value. The time period (in seconds) to hold the long tap gesture. You can specify partial seconds as a duration time. Default value = 1 |
x |
Optional. A long integer value. The x-coordinate of the tap gesture. The coordinate is relative to the upper left corner of the object. The default value is the center of the object. Default value = -9999 |
y |
Optional. A long integer value. The y-coordinate of the tap gesture. The coordinate is relative to the upper left corner of the object. The default value is the center of the object. Default value = -9999 |
Return Type
None
IMPORTANT
This method is supported as long as the application supports touch events and is run on a mobile device on Digital Lab or a touch-enabled browser. Using this method on desktop browsers may generate warnings, even if you are using a mobile emulator.
MiddleClick Method
Description
Middle-clicks the object.
Syntax
object.MiddleClick [x], [y]
Arguments
Parameter | Description |
---|---|
x |
Optional. A long integer value. The x-coordinate of the middle-click. 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. A long integer value. The y-coordinate of the middle-click. 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 |
Return Type
None
OpenPossibleEntries Method
Description
Opens a list of possible entries for a specified cell.
Syntax
object.OpenPossibleEntries Row, Column
Arguments
Parameter | Description |
---|---|
Row |
Required. A Variant. The row number. The first row in the table is 1. (Note that if the table has a column header row, it is counted as the first row in the table.) |
Column |
Required. A Variant. The column number. The first column in the table is 1. |
Return Type
None
IMPORTANT
This method can be performed only on edit fields within table objects.
Example
'The following example uses the OpenPossibleEntries method to open the "Possible Entries" list or dialog box 'for the cell in the second row and third column of the "Purchase Details" table. Browser("Browser").Page("SAP Enterprise_12").SAPFrame("Create Purchase").SAPTable("Purchase Details").OpenPossibleEntries 2, 3
Pan Method
Description
Perform a pan gesture.
Syntax
object.Pan (deltaX, deltaY, [duration], [startX], [startY])
Arguments
Parameter | Description |
---|---|
deltaX |
Required. A long integer value. The distance moved on the x-axis, relative to the start point. |
deltaY |
Required. A long integer value. The distance moved on the y-axis, relative to the start point. |
duration |
Optional. A double floating value. The number of seconds required to perform the pan gesture. Default value = 0.5 |
startX |
Optional. A long integer value. The x-coordinate of where the pan gesture starts. The specified coordinates are relative ot the upper left corner of the object. Default value = -9999 |
startY |
Optional. A long integer value. The y-coordinate of where the pan gesture starts. 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 |
Return Type
None.
IMPORTANT
This method is supported as long as the Web site being tested is run on a mobile device on Digital Lab, and the test object implements this gesture. Using this method on desktop browsers may generate warnings, even if you are using a mobile emulator.
This method is not supported in Internet Explorer and older versions of FireFox.
Example
'The following example performs a Pan gesture on a SAPTable object. Browser("ITS System Informati").Page("Table control").SAPTable("1x1").Pan 564, 507
Pinch Method
Description
Perform a pinch gesture.
Syntax
object.Pinch (scale, [duration], [x], [y])
Arguments
Parameter | Description |
---|---|
scale |
Required. A double floating value. The zoom scale resulting from the pinch gesture. This is the ratio between the distance between the fingers at the end of the pinch gesture to the distance between the fingers at the beginning of the pinch gesture. |
duration |
Optional. A double floating value. The number of seconds required to perform the pinch gesture. The default value is 1 second. Default value = 1 |
x |
Optional. A long integer value. The x-coordinate of where the pinch gesture begins. 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. A long integer value. The y-coordinate of of where the pinch gesture begins. 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 |
Return Type
None.
IMPORTANT
This method is supported as long as the Web site being tested is run on a mobile device on Digital Lab, and the test object implements this gesture. Using this method on desktop browsers may generate warnings, even if you are using a mobile emulator.
This method is not supported in Internet Explorer and older versions of FireFox.
Example
'The following example performs a Pinch gesture to zoom in on a SAPTable object. Browser("ITS System Informati").Page("Table control").SAPTable("1x1").Pinch 2.5
RightClick Method
Description
Right-clicks the object.
Syntax
object.RightClick [x], [y]
Arguments
Parameter | Description |
---|---|
x |
Optional. A long integer value. The x-coordinate of the right-click. 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. A long integer value. The y-coordinate of the right-click. 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 |
Return Type
None
RowCount Method
Description
Returns the number of rows in a table.
Syntax
object.RowCount
Return Type
A long integer value.
Example
'The following example uses the RowCount method to determine the number of rows in the "1x1" table. NumRows = Browser("ITS System Informati").Page("Table control").SAPTable("1x1").RowCount
SelectCell Method
Description
Clicks the item in the cell, if one exists.
Syntax
object.SelectCell Row, Column
Arguments
Parameter | Description |
---|---|
Row |
Required. A long integer value. The row number. The first row in the table is 1. (Note that if the table has a column header row, it is counted as the first row in the table.) |
Column |
Required. A long integer value. The column number. The first column in the table is 1. |
Return Type
None
Example
'The following example uses the SelectCell method to click the object in the cell in the '5th row, 4th column of the "1x1" table. Browser("ITS System Informati").Page("Table control").SAPTable("1x1").SelectCell 5, 4
SelectItemInCell Method
Description
Clicks the specified item in the specified cell.
Syntax
object.SelectItemInCell Row, Column, [Item]
Arguments
Parameter | Description |
---|---|
Row |
Required. A Variant. The row number. The first row in the table is 1. (Note that if the table has a column header row, it is counted as the first row in the table.) |
Column |
Required. A Variant. The column number. The first column in the table is 1. |
Item |
Optional. A String value. The name of the item to select. Default value = "#0" |
Return Type
None
SetCellData Method
Description
Sets the data of the cell specified by row and column.
Syntax
object.SetCellData Row, Column, Data
Arguments
Parameter | Description |
---|---|
Row |
Required. A long integer value. The row number. The first row in the table is 1. (Note that if the table has a column header row, it is counted as the first row in the table.) |
Column |
Required. A long integer value. The column number. The first column in the table is 1. |
Data |
Required. A String value. The data to be inserted in the specified cell. |
Return Type
None
Example
'The following example uses the SetCellData method to set the data in the cell in the '5th row, 4th column of the "1x1" table to "Paris". Browser("ITS System Informati").Page("Table control").SAPTable("1x1").SetCellData 5, 4, "PARIS"
Submit Method
Description
Submits a form.
Syntax
object.Submit
Return Type
None.
Example
'The following example uses the Submit method to submit a form using the "Manufacturer" edit box. Browser("ITS System Informati").Page("User Interface_7").SAPEdit("Manufacturer").Submit
'The following example uses the Submit method to submit a form using the "Manufacturer" button. Browser("ITS System Informati").Page("User Interface_7").SAPButton("Manufacturer").Submit
Swipe Method
Description
Swipes the object.
Syntax
object.Swipe direction, [distance], [duration], [startX], [startY]
Arguments
Parameter | Description |
---|---|
direction |
Required. A MoveDirection Value. The y-coordinate of the tap gesture. The coordinate is relative to the upper left corner of the object. The default value is the center of the object. |
distance |
Optional. A long integer value. The distance (in pixels) of the swipe gesture. Default value = 200 |
duration |
Optional. A double floating value. The time period (in seconds) of the swipe gesture. You can specify partial seconds as a duration time. Default value = 0.25 |
startX |
Optional. A long integer value. The x-coordinate at which the swipe gesture begins. 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 |
startY |
Optional. A long integer value. The y-coordinate at which the swipe gesture begins. The coordinate is relative to the upper left corner of the object. The default value is the center of the object. Default value = -9999 |
Return Type
None
IMPORTANT
This method is supported as long as the application supports touch events and is run on a mobile device on Digital Lab or a touch-enabled browser. Using this method on desktop browsers may generate warnings, even if you are using a mobile emulator.
This method is not supported for Windows Phone.
Example
'The following example performs a Swipe gesture on a SAPTable object. Browser("ITS System Informati").Page("Table control").SAPTable("1x1").Swipe moveDown,200,1,75,75
See also: