ListBoxFunctions

Last Updated:

Actions for working with ListBox objects


[How To Read This Reference]
ActivatePartialMatch
RC RJ WR SE
Routine to DblClick and Verify an item according to a partial text match.
ActivateTextItem
RC RJ WR SE
Routine to DblClick and Verify an item according to its text value.
ActivateUnverifiedPartialMatch
RC RJ SE
DblClicks an item according to a partial text match.
ActivateUnverifiedTextItem
RC RJ SE
Routine to DblClick an item according to its text value.
CaptureItemsToFile
RJ
Capture Items To a File specified (if not abs, then to test dir)
ClickColumnIndex
RJ
Click a column header based on it's index of list, starting from 1
ClickColumnLabel
RJ
Click a column header based on it's label
ClickTextItem
RJ
Routine to Click a selection according to its text value. Note: This keyword triggers the click event
ExtendSelectionToTextItem
RJ
Routine to Shift+Click and Verify a selection according to its text value.
RightClickTextItem
RJ
Routine to Right-Click a selection according to its text value. Note: This keyword triggers the right-click event.
SelectAnotherTextItem
RC RJ SE
Routine to Control+Click and Verify a selection according to its text value.
SelectAnotherUnverifiedTextItem
RC RJ SE
Routine to Control+Click an item according to its text value. No post-select verification of the selection is performed.
SelectIndex
RJ SE
Select an item based on it's index in the list, starting from 1
SelectPartialMatch
RC RJ WR SE
Routine to Click and Verify an item according to a partial text match.
SelectTextItem
RC RJ WR SE
Routine to Click and Verify a selection according to its text value.
SelectUnverifiedAnotherTextItem
RC
Deprecated For:SelectAnotherUnverifiedTextItem
SelectUnverifiedPartialMatch
RC RJ SE
Routine to Click an item according to a partial text match.
SelectUnverifiedTextItem
RC RJ SE
Routine to Click a selection according to its text value.
SetListContains
RJ
Set a variable with the result of checking that a listview contains the provided item.
VerifyItem
RJ
Verifies a particular case-sensitive item based on index is equal to a particular value.
VerifyItemUnselected
RC RJ WR SE
Verifies a particular case-sensitive text item is NOT selected.
VerifyListContains
RC RJ WR SE
Verifies a particular list-item exists in the list (somewhere)
VerifyListContainsPartialMatch
RC RJ SE
Verifies a particular list-item substring exists in the list (somewhere)
VerifyListDoesNotContain
RC RJ WR SE
Verifies a particular list-item does NOT exists in the list (somewhere)
VerifyListDoesNotContainPartialMatch
RC RJ SE
Verifies a particular list-item substring does NOT exists in the list (somewhere)
VerifyMenuItem
RJ
Verifies a particular case-sensitive menu-item exists in the list (somewhere)
VerifyMenuPartialMatch
RJ
Verifies a particular case-insensitive menu-item substring exists in the list (somewhere)
VerifyPartialMatch
RJ
Verifies a particular case-insensitive item based on index is has as substring a particular value.
VerifySelectedItem
RC RJ WR SE
Verifies a particular case-sensitive text item is selected
VerifySelectedPartialMatch
RC RJ WR SE
Verifies a particular case-sensitive item is selected based on a substring match.

ListBoxFunctions::ActivatePartialMatch
RC RJ WR SE

Routine to DblClick and Verify an item according to a partial text match.

Routine to DblClick and Verify an item according to a partial text match.

Fields: [ ]=Optional with Default Value
  1. TextValue
    Case-sensitive substring of node to DblClick and verify.

    TextValue should contain the case-sensitive substring to DblClick and verify.

Examples:
  • T, WINDOW, ListBox, ActivatePartialMatch , "ATextSubstring"
    DblClicks the first item containing the substring in the ListBox. The selection is then verified as having occurred.


[How To Read This Reference]

ListBoxFunctions::ActivateTextItem
RC RJ WR SE

Routine to DblClick and Verify an item according to its text value.

Routine to DblClick and Verify an item according to its text value.

Fields: [ ]=Optional with Default Value
  1. TextValue
    Case-sensitive text of node to DblClick and verify.

    TextValue should contain the case-sensitive text item to DblClick and verify.

Examples:
  • T, WINDOW, ListBox, ActivateTextItem , "AParticularUserID"
    DblClicks "AParticularUserID" in the ListBox object.

    Dblclicks "AParticularUserID" in the ListBox object. The current value of the selection is then verified.

[How To Read This Reference]

ListBoxFunctions::ActivateUnverifiedPartialMatch
RC RJ SE

DblClicks an item according to a partial text match.

DblClicks an item according to a partial text match.

The item is activated but no check is performed after the selection to verify the selection was successful.



Fields: [ ]=Optional with Default Value
  1. TextValue
    Case-sensitive substring of node to DblClick.

    TextValue should contain the case-sensitive substring to DblClick.

Examples:
  • T, WINDOW, ListBox, ActivateUnverifiedPartialMatch , "ATextSubstring"
    DblClicks the first item containing the substring in the ListBox.

    DblClicks the first item containing the substring in the ListBox.

    No check is performed after the selection to verify success. This is typically done for cases when the listbox is only temporary in nature and disappears immediately upon a selection.



[How To Read This Reference]

ListBoxFunctions::ActivateUnverifiedTextItem
RC RJ SE

Routine to DblClick an item according to its text value.

Routine to DblClick an item according to its text value.

No check is performed after the selection to verify success. This is typically done for cases when the listbox is only temporary in nature and disappears immediately upon a selection.



Fields: [ ]=Optional with Default Value
  1. TextValue
    Case-sensitive text of node to DblClick.

    TextValue should contain the case-sensitive text item to DblClick.

    No check is performed after the selection to verify success. This is typically done for cases when the listbox is only temporary in nature and disappears immediately upon a selection.



Examples:
  • T, WINDOW, ListBox, ActivateUnverifiedTextItem , "AParticularUserID"
    DblClicks "AParticularUserID" in the ListBox object.

    Dblclicks "AParticularUserID" in the ListBox object.

    No check is performed after the selection to verify success. This is typically done for cases when the listbox is only temporary in nature and disappears immediately upon a selection.



[How To Read This Reference]

ListBoxFunctions::CaptureItemsToFile
RJ

Capture Items To a File specified (if not abs, then to test dir)

Capture Items To a File specified (if not abs, then to test dir)

Fields: [ ]=Optional with Default Value
  1. FileName
    File name (if not absolute, then to test dir)

    File name (if not absolute, then to test dir)

  2. [ FileEncoding = ]
    Specify a character encoding to be used when saving data to a file. If it is not specified, the system default file encoding will be used. The encoding should be a valid string supported by Java; if it is not valid, the system default file encoding will be used instead.


Examples:
  • T, WINDOW, ListBox, CaptureItemsToFile , afile.txt
    Captures all the items in the list to ...\datapool\test\afile.txt

    Captures all the items in the list to ...\datapool\test\afile.txt

  • T, WINDOW, ListBox, CaptureItemsToFile , afile.txt, "UTF-8"
    Captures all the items in the list to ...\datapool\test\afile.txt

    Captures all the items in the list to ...\datapool\test\afile.txt
    Writing file with "UTF-8" encoding.


[How To Read This Reference]

ListBoxFunctions::ClickColumnIndex
RJ

Click a column header based on it's index of list, starting from 1

Click a column header based on it's index of list, starting from 1

Fields: [ ]=Optional with Default Value
  1. Index
    Index of the column header to click, starting from 1

    Index of the column header to click, starting from 1

Examples:
  • T, WINDOW, ListBox, ClickColumnIndex , 1
    Click the header of the first column in the list.

    Click the header of the first column in the list.

[How To Read This Reference]

ListBoxFunctions::ClickColumnLabel
RJ

Click a column header based on it's label

Click a column header based on it's label

Fields: [ ]=Optional with Default Value
  1. Label
    Label of the column header to click

    Label of the column header to click

Examples:
  • T, WINDOW, ListBox, ClickColumnLabel , "Product"
    Click the column header whose label is "Product".

    Click the column header whose label is "Product".

[How To Read This Reference]

ListBoxFunctions::ClickTextItem
RJ

Routine to Click a selection according to its text value.

Note: This keyword triggers the click event


Routine to Click a selection according to its text value.

NOTE: Only ClickTextItem keyword triggers the click event. SelectTextItem keyword fails to trigger click event on some instances.



Fields: [ ]=Optional with Default Value
  1. TextValue
    Case-sensitive text of node to select.

    TextValue should contain the case-sensitive text item to select.

Examples:
  • T, WINDOW, ListBox, ClickTextItem , "AParticularUserID"
    Clicks "AParticularUserID" from the ListBox object.

    Clicks "AParticularUserID" from the ListBox object.

[How To Read This Reference]

ListBoxFunctions::ExtendSelectionToTextItem
RJ

Routine to Shift+Click and Verify a selection according to its text value.

This extends the current selection to include the specified selection and all other items inbetween.
NOTE: This may not work in all environments (Java, Web, etc...)

For example, in Java, we can usually verify that an item exists in the list; but we do not seem to be able to verify if a newly added selection to multiple selections is actually selected.

So, for Java, we will verify existence in the list, but we cannot verify the selection was successful--we will skip that last check.



Fields: [ ]=Optional with Default Value
  1. TextValue
    Case-sensitive text of node to select and verify.


Examples:
  • T, WINDOW, ListBox, ExtendSelectionToTextItem, "AParticularUserID"
    Selects "AParticularUserID" from the ListBox object.

    Selects "AParticularUserID" from the ListBox object. This adds "AParticularUserID" and any items inbetween to any existing items already selected.
    When possible, we will also attempt to verify the added selection was successful.


[How To Read This Reference]

ListBoxFunctions::RightClickTextItem
RJ

Routine to Right-Click a selection according to its text value.

Note: This keyword triggers the right-click event.


Routine to Right-Click a selection according to its text value.

Fields: [ ]=Optional with Default Value
  1. TextValue
    Case-sensitive text of node to right-click on.

    TextValue should contain the case-sensitive text item to right-click.

Examples:
  • T, WINDOW, ListBox, RightClickTextItem , "AParticularUserID"
    Right-Clicks "AParticularUserID" from the ListBox object.

    Right-Clicks "AParticularUserID" from the ListBox object.

[How To Read This Reference]

ListBoxFunctions::SelectAnotherTextItem
RC RJ SE

Routine to Control+Click and Verify a selection according to its text value.

This adds selected items to items already selected.
NOTE: This may not work in all environments (Java, Web, etc...)

For example, in Java, we can usually verify that an item exists in the list; but we do not seem to be able to verify if a newly added selection to multiple selections is actually selected.

So, for Java, we will verify existence in the list, but we cannot verify the selection was successful--we will skip that last check.



Fields: [ ]=Optional with Default Value
  1. TextValue
    Case-sensitive text of node to select and verify.


Examples:
  • T, WINDOW, ListBox, SelectAnotherTextItem , "AParticularUserID"
    Selects "AParticularUserID" from the ListBox object.

    Selects "AParticularUserID" from the ListBox object. This adds to any existing items already selected.
    When possible, we will also attempt to verify the added selection was successful.


[How To Read This Reference]

ListBoxFunctions::SelectAnotherUnverifiedTextItem
RC RJ SE

Routine to Control+Click an item according to its text value. No post-select verification of the selection is performed.

Routine to Control+Click an item according to its text value. No post-select verification of the selection is performed. This selection is added to any items already selected.
NOTE: This may not work in all environments (Java, Web, etc...)


Fields: [ ]=Optional with Default Value
  1. TextValue
    Case-sensitive text of node to select.


Examples:
  • T, WINDOW, ListBox, SelectAnotherUnverifiedTextItem , "AParticularUserID"
    Selects "AParticularUserID" from the ListBox object.

    Selects "AParticularUserID" from the ListBox. The item is selected and added to the rest of the items already selected.

[How To Read This Reference]

ListBoxFunctions::SelectIndex
RJ SE

Select an item based on it's index in the list, starting from 1

Select an item based on it's index in the list, starting from 1

Fields: [ ]=Optional with Default Value
  1. Index
    Index of the text item to select, starting from 1

    Index of the text item to select, starting from 1

Examples:
  • T, WINDOW, ListBox, SelectIndex , 1
    Selects the first item in the list.

    Selects the first item in the list.

[How To Read This Reference]

ListBoxFunctions::SelectPartialMatch
RC RJ WR SE

Routine to Click and Verify an item according to a partial text match.

Routine to Click and Verify an item according to a partial text match.

Note: for RobotJ, same as SelectUnverifiedPartialMatch



Fields: [ ]=Optional with Default Value
  1. TextValue
    Case-sensitive substring of node to select and verify.

    TextValue should contain the case-sensitive substring to select and verify.

Examples:
  • T, WINDOW, ListBox, SelectPartialMatch , "ATextSubstring"
    Clicks the first item containing the substring text in the ListBox.

    Clicks the first item containing the substring text in the ListBox. After the selection we verify the item is selected.

[How To Read This Reference]

ListBoxFunctions::SelectTextItem
RC RJ WR SE

Routine to Click and Verify a selection according to its text value.

Routine to Click and Verify a selection according to its text value.

Note: RobotJ also uses the identical keyword 'Select'

Note: For RobotJ, there is no additional verify step in the framework code, in other words, for RobotJ, the SelectTextItem and SelectUnverifiedTextItem keywords are identical because RobotJ does all of the verification internally and there is no control over that in it's api.



Fields: [ ]=Optional with Default Value
  1. TextValue
    Case-sensitive text of node to select and verify.

    TextValue should contain the case-sensitive text item to select and verify.

Examples:
  • T, WINDOW, ListBox, SelectTextItem , "AParticularUserID"
    Selects "AParticularUserID" from the ListBox object.

    Selects "AParticularUserID" from the ListBox object and verifies the selection actually occurred.

[How To Read This Reference]

ListBoxFunctions::SelectUnverifiedAnotherTextItem (deprecated for: SelectAnotherUnverifiedTextItem)
RC

Use the identical "SelectAnotherUnverifiedTextItem" instead.

Routine to Control+Click an item according to its text value. No post-select verification of the selection is performed. This selection is added to any items already selected.
NOTE: This may not work in all environments (Java, Web, etc...)


Fields: [ ]=Optional with Default Value
  1. TextValue
    Case-sensitive text of node to select.


Examples:
  • T, WINDOW, ListBox, SelectUnverifiedAnotherTextItem , "AParticularUserID"
    Selects "AParticularUserID" from the ListBox object.

    Selects "AParticularUserID" from the ListBox. The item is selected and added to the rest of the items already selected.

[How To Read This Reference]

ListBoxFunctions::SelectUnverifiedPartialMatch
RC RJ SE

Routine to Click an item according to a partial text match.

Routine to Click an item according to a partial text match.

No check is performed after the selection to verify success. This is typically done for cases when the listbox is only temporary in nature and disappears immediately upon a selection.

Note: for RobotJ, same as SelectPartialMatch



Fields: [ ]=Optional with Default Value
  1. TextValue
    Case-sensitive substring of node to select.

    TextValue should contain the case-sensitive substring to select.

Examples:
  • T, WINDOW, ListBox, SelectUnverifiedPartialMatch , "ATextSubstring"
    Clicks the first item containing the substring text in the ListBox.

    Clicks the first item containing the substring text in the ListBox.

    No check is performed after the selection to verify success. This is typically done for cases when the listbox is only temporary in nature and disappears immediately upon a selection.



[How To Read This Reference]

ListBoxFunctions::SelectUnverifiedTextItem
RC RJ SE

Routine to Click a selection according to its text value.

Routine to Click a selection according to its text value.

No check is performed after the selection to verify success. This is typically done for cases when the listbox is only temporary in nature and disappears immediately upon a selection.

Note: RobotJ also uses the identical keyword 'SelectUnverified'

Note: This is the default for RobotJ, in other words, for RobotJ, the SelectTextItem and SelectUnverifiedTextItem keywords are identical because RobotJ does all of the verification internally and there is no control over that in it's api.



Fields: [ ]=Optional with Default Value
  1. TextValue
    Case-sensitive text of node to select.

    TextValue should contain the case-sensitive text item to select.

    No check is performed after the selection to verify success. This is typically done for cases when the listbox is only temporary in nature and disappears immediately upon a selection.



Examples:
  • T, WINDOW, ListBox, SelectUnverifiedTextItem , "AParticularUserID"
    Selects "AParticularUserID" from the ListBox object.

    Selects "AParticularUserID" from the ListBox object.

    No check is performed after the selection to verify success. This is typically done for cases when the listbox is only temporary in nature and disappears immediately upon a selection.



[How To Read This Reference]

ListBoxFunctions::SetListContains
RJ

Set a variable with the result of checking that a listview contains the provided item.

The search of the item is expected to be a case-sensitive exact match of the item. The provided variable is set with 'TRUE' if the item is found or 'FALSE' if the item is not found.

Fields: [ ]=Optional with Default Value
  1. ItemText
    The case-sensitive name of the sought item.

    ItemText should contain the case-sensitive text item to find in the list view. A message is sent to the log confirming whether or not the item is found in the list view.

  2. ResultVar
    The name of the variable receiving the result.

    This variable is set with 'TRUE' if the item is found or 'FALSE' if the item is not found.

Examples:
  • T, WINDOW, ListView, SetListContains , "AParticularServerName", isFound

    Variable isFound is set to 'TRUE' if the item "AParticularServerName" is found in the ListView object. If the item is not found, the variable isFound is set to 'FALSE'.



[How To Read This Reference]

ListBoxFunctions::VerifyItem
RJ

Verifies a particular case-sensitive item based on index is equal to a particular value.

Verifies a particular case-sensitive item based on index is equal to a particular value.

Fields: [ ]=Optional with Default Value
  1. Index
    Index of the item in the list starting from 1

    Index of the item in the list starting from 1

  2. TextValue
    Case-sensitive string to compare to the text of the node at the index.

    Case-sensitive string to compare to the text of the node at the index.

Examples:
  • T, WINDOW, ListBox, VerifyItem, 1, "ATextString"
    Verifies that the first item is equal to "ATextString"


  • T, WINDOW, ListBox, VerifyItem, 10, "ATextString10"
    Verifies that the item at index 10 is equal to "ATextString10"


[How To Read This Reference]

ListBoxFunctions::VerifyItemUnselected
RC RJ WR SE

Verifies a particular case-sensitive text item is NOT selected.

Verifies a particular case-sensitive text item is NOT selected.

Fields: [ ]=Optional with Default Value
  1. TextValue
    Case-sensitive text of node that will be verified as unselected

    TextValue should contain the case-sensitive text of the item that is expected to NOT be selected.

Examples:
  • T, WINDOW, ListBox, VerifyItemUnselected, "AParticularUserID"
    Verifies that "AParticularUserID" is NOT selected in the ListBox.


[How To Read This Reference]

ListBoxFunctions::VerifyListContains
RC RJ WR SE

Verifies a particular list-item exists in the list (somewhere)

Verifies a particular list-item exists in the list (somewhere). The comparison can be case-sensitive. By default, it is not.

Fields: [ ]=Optional with Default Value
  1. TextValue
    String to look for in the list.

    String to look for in the list.

  2. [ CaseSensitive = ]
    Optional "True" for case-sensitive search

    Optional "True" for case-sensitive search.
    Robot (others?) also supports "CASE-SENSITIVE" in place of "TRUE" for this parameter.


Examples:
  • T, WINDOW, ListBox, VerifyListContains, "ATextString", "True"
    Verifies that the listbox contains somewhere an item equal to "ATextString" using a case-sensitive comparison.


  • T, WINDOW, ListBox, VerifyListContains, "ATextString", "Case-Sensitive"
    Verifies that the listbox contains somewhere an item equal to "ATextString" using a case-sensitive comparison. The use of "CASE-SENSITIVE" literal text instead of "TRUE" initially is implemented on Robot. Other engines will support this as developers can get in there and add it.


  • T, WINDOW, ListBox, VerifyListContains, "ATextString10", "False"
    Verifies that the listbox contains somewhere an item equal to "ATextString10" case-insensitive search. The "False" is not really necessary since the search is not case-sensitive by default.


  • T, WINDOW, ListBox, VerifyListContains, "ATextString10"
    Verifies that the listbox contains somewhere an item equal to "ATextString10" using a comparison that is not case-sensitive.


[How To Read This Reference]

ListBoxFunctions::VerifyListContainsPartialMatch
RC RJ SE

Verifies a particular list-item substring exists in the list (somewhere)

Verifies a particular list-item substring exists in the list (somewhere). The comparison can be case-sensitive. By default, it is not.

Fields: [ ]=Optional with Default Value
  1. TextValue
    SubString to look for in the list.

    SubString to look for in the list.

  2. [ CaseSensitive = ]
    Optional "True" for case-sensitive search

    Optional "True" for case-sensitive search.
    Robot (others?) also supports "CASE-SENSITIVE" in place of "TRUE" for this parameter.


Examples:
  • T, WINDOW, ListBox, VerifyListContainsPartialMatch, "Text", "True"
    Verifies that the listbox contains somewhere an item containing the substring "Text" using a case-sensitive comparison.


  • T, WINDOW, ListBox, VerifyListContainsPartialMatch, "Text", "Case-Sensitive"
    Verifies that the listbox contains somewhere an item containing the substring "Text" using a case-sensitive comparison. The use of "CASE-SENSITIVE" literal text instead of "TRUE" initially is implemented in Robot. Other engines will support this as developers can add it.


  • T, WINDOW, ListBox, VerifyListContainsPartialMatch, "Text", "False"
    Verifies that the listbox contains somewhere an item containing the substring "Text" case-insensitive search. The "False" is not really necessary since the search is not case-sensitive by default.


  • T, WINDOW, ListBox, VerifyListContainsPartialMatch, "Text"
    Verifies that the listbox contains somewhere an item containing the substring "Text" using a comparison that is not case-sensitive.


[How To Read This Reference]

ListBoxFunctions::VerifyListDoesNotContain
RC RJ WR SE

Verifies a particular list-item does NOT exists in the list (somewhere)

Verifies a particular list-item does NOT exists in the list (somewhere). The comparison can be case-sensitive. It is NOT case-sensitive by default.

Fields: [ ]=Optional with Default Value
  1. TextValue
    String to look for in the list.

    String to look for in the list.

  2. [ CaseSensitive = ]
    Optional "True" for case-sensitive search

    Optional "True" for case-sensitive search. Robot also supports the literal string "CASE-SENSITIVE" instead of "TRUE".

Examples:
  • T, WINDOW, ListBox, VerifyListDoesNotContain, "ATextString", "True"
    Verifies that the listbox does NOT contains somewhere an item equal to "ATextString" case-sensitive search.


  • T, WINDOW, ListBox, VerifyListDoesNotContain, "ATextString", "Case-Sensitive"
    Verifies that the listbox does NOT contains somewhere an item equal to "ATextString" case-sensitive search. The "Case-Sensitive" literal text instead of "True" may only be supported by Robot initially.


  • T, WINDOW, ListBox, VerifyListDoesNotContain, "ATextString10", "False"
    Verifies that the listbox does NOT contains somewhere an item equal to "ATextString10" case-insensitive search. "False" is not really necessary as comparisons here are NOT case-sensitive by default.


  • T, WINDOW, ListBox, VerifyListDoesNotContain, "ATextString10"
    Verifies that the listbox does NOT contains somewhere an item equal to "ATextString10" case-insensitive search.


[How To Read This Reference]

ListBoxFunctions::VerifyListDoesNotContainPartialMatch
RC RJ SE

Verifies a particular list-item substring does NOT exists in the list (somewhere)

Verifies a particular list-item substring does NOT exists in the list (somewhere). The comparison can be case-sensitive. It is NOT case-sensitive by default.

Fields: [ ]=Optional with Default Value
  1. TextValue
    SubString to look for in the list.

    SubString to look for in the list.

  2. [ CaseSensitive = ]
    Optional "True" for case-sensitive search

    Optional "True" for case-sensitive search. Robot also supports the literal string "CASE-SENSITIVE" instead of "TRUE".

Examples:
  • T, WINDOW, ListBox, VerifyListDoesNotContainPartialMatch, "Text", "True"
    Verifies that the listbox does NOT contain an item containg the substring "Text" using a case-sensitive search.


  • T, WINDOW, ListBox, VerifyListDoesNotContainPartialMatch, "String", "Case-Sensitive"
    Verifies that the listbox does NOT contain an item containing the substring "String" using a case-sensitive search. The "Case-Sensitive" literal text instead of "True" may only be supported by Robot initially.


  • T, WINDOW, ListBox, VerifyListDoesNotContainPartialMatch, "String", "False"
    Verifies that the listbox does NOT contain an item containing the substring "String" using a case-insensitive search. "False" is not really necessary as comparisons here are NOT case-sensitive by default.


  • T, WINDOW, ListBox, VerifyListDoesNotContainPartialMatch, "Text"
    Verifies that the listbox does NOT containan item containing the substring "Text" using a case-insensitive search.


[How To Read This Reference]

ListBoxFunctions::VerifyMenuItem
RJ

Verifies a particular case-sensitive menu-item exists in the list (somewhere)

Verifies a particular case-sensitive menu-item exists in the list (somewhere)

Fields: [ ]=Optional with Default Value
  1. TextValue
    Case-sensitive string to compare to the text of any node in the list.

    Case-sensitive string to compare to the text of any node in the list.

Examples:
  • T, WINDOW, ListBox, VerifyMenuItem, "ATextString"
    Verifies that the list contains somewhere an item equal to "ATextString"


  • T, WINDOW, ListBox, VerifyMenuItem, "ATextString10"
    Verifies that the list contains somewhere an item equal to "ATextString10"


[How To Read This Reference]

ListBoxFunctions::VerifyMenuPartialMatch
RJ

Verifies a particular case-insensitive menu-item substring exists in the list (somewhere)

Verifies a particular case-insensitive menu-item substring exists in the list (somewhere)

Fields: [ ]=Optional with Default Value
  1. TextValue
    Case-insensitive substring to compare to the text of any node in the list.

    Case-insensitive substring to compare to the text of any node in the list.

Examples:
  • T, WINDOW, ListBox, VerifyMenuPartialMatch, "ATextString"
    Verifies that the list contains somewhere an item substring "ATextString"


  • T, WINDOW, ListBox, VerifyMenuPartialMatch, "10"
    Verifies that the list contains somewhere an item substring "10"


[How To Read This Reference]

ListBoxFunctions::VerifyPartialMatch
RJ

Verifies a particular case-insensitive item based on index is has as substring a particular value.

Verifies a particular case-insensitive item based on index is has as substring a particular value.

Fields: [ ]=Optional with Default Value
  1. Index
    Index of the item in the list starting from 1

    Index of the item in the list starting from 1

  2. TextValue
    Case-insensitive substring to compare to the text of the node at the index.

    Case-insensitive substring to compare to the text of the node at the index.

Examples:
  • T, WINDOW, ListBox, VerifyPartialMatch, 1, "AText"
    Verifies that the first item contains substring "atext"


  • T, WINDOW, ListBox, VerifyItem, 10, "10"
    Verifies that the item at index 10 contains substring "10"


[How To Read This Reference]

ListBoxFunctions::VerifySelectedItem
RC RJ WR SE

Verifies a particular case-sensitive text item is selected

Verifies a particular case-sensitive text item is selected

Fields: [ ]=Optional with Default Value
  1. TextValue
    Case-sensitive text of node that will be verified as selected

    TextValue should contain the case-sensitive text of the item expected to already be selected

Examples:
  • T, WINDOW, ListBox, VerifySelectedItem , "AParticularUserID"
    Verifies that "AParticularUserID" is selected in the ListBox.


[How To Read This Reference]

ListBoxFunctions::VerifySelectedPartialMatch
RC RJ WR SE

Verifies a particular case-sensitive item is selected based on a substring match.

Verifies a particular case-sensitive item is selected based on a substring match.

Fields: [ ]=Optional with Default Value
  1. TextValue
    Case-sensitive substring of node that will be verified selected

    TextValue should contain the case-sensitive substring of the item expected to already be selected

Examples:
  • T, WINDOW, ListBox, VerifySelectedPartialMatch , "ATextSubstring"
    Verifies that the first item containing the substring is selected in the ListBox.


[How To Read This Reference]