Hello
I am sending some text to a web page combo box using data from an array:
SendText>someArrayField
The text in the arrayField is "Sea". The options in the combo box are "Sea", "Air" and "Mail". The problem I have is that instead of sending the whole string it sends "S", then "E" then "A". So the result is "Air" when it should be "Sea".
Could anyone suggest how I can get around this problem. This is only one of a number of combo boxes on the web page that I will need to input into. Some of the other combo boxes will have hundreds of items, so the results could be problematic.
Any help would be appreciated.
Web page combo box input
Moderators: JRL, Dorian (MJT support)
I've found that pasting text is sometimes preferable to using Send>.
Code: Select all
PutClipboard>someArrayField
Press Ctrl
Send>v
Release Ctrl