Hi Team,
In a particular page the following Inputvalue command passes without any issue.
CMD : InputValue 0 38 "TEXT" "" "fsTacClntServerPort" "77" "" "number:7"
But the Index command throws an message saying fsTacClntServerPort is not an text item.
########
Index command
IndexSetEnd 0 "number:7"
IndexFindElement 0 UP "name" "fsTacClntServerPort" "number:7"
IndexInputValue 0 "TEXT" "77" "" "number:7"
########
If we try Valueset, the command passes but the value is not set.
########
IndexSetEnd 0 "number:7"
IndexFindElement 0 UP "name" "fsTacClntServerPort" "number:7"
ValueSet 77
ValuePutElement 0 "ffsTacClntServerPort" "number:7"
########
The Same issue persist in the cases of Combo-box..InputValue command suceeds but not the Index command. I need Index to work without any issues.
########
InputValue 0 16 "SELECT-ONE" "" "fsTacClntServerAddrType" "IPv4" "0" "" \
"number:7"
#######
IndexSetEnd 0 "number:7"
IndexFindElement 0 UP "name" "fsTacClntServerAddrType" "number:7"
IndexInputValue 0 "SELECT-ONE" "IPv4" "0" "number:7"
############