Hello Team,
Set Text and Send Keys are not work with this “19/09/1992” kind of data.
It’s putting “19/09/1929”
Note: Input filed is auto set date format
Please resolve it ASAP and provide same solution for that issue.


Best Regards,
Utkarsh Patel
Capture 1.JPG
Capture 2.JPG
few day ago similar problem was solved by adding space to selformated string. basicaly script is too fast for formatting functions:
try to sent : “1 9 0 9 1 9 9 2” or similar
2 Likes
if you fill the form manually, do you need to ‘/’?
Andrej Podhajský said:
few day ago similar problem was solved by adding space to selformated string. basicaly script is too fast for formatting functions:
try to sent : “1 9 0 9 1 9 9 2” or similar
Not working with similar “1 9 0 9 1 9 9 2” input.
last what came to my mind send following:
Keys.chord('1',Keys.END,'9',Keys.END,'0',Keys.END,'9',Keys.END,'1',Keys.END,'9',Keys.END,'9',Keys.END,'2')
2 Likes