jaredjamieson
2 years agoOccasional Contributor
Keys method does not input the entire string
I am able to use the method:
on_screen_element.keys("1234567890");
Most of the time, with smaller strings, this correctly simulates pressing each key in the string. With strings that are generally 'longer' such as the example, the output ends up being:
134567890
This ends up completely missing the 2nd element of the string consistently. When checking the logs, it states:
The keystrokes '1234567890' were sent to the control.
I have attempted to resolve this issue by doing:
for (letter in string)
on_screen_element.keys(letter);
This results in the same issue. Any help would be greatly appreciated! Thank you all in advance.
I would go ahead and try the upgrade.