I have a User ID text field in a form. I need to enter some text along with current timestamp value [ex: "abc_23022014_061600"
] into "User ID" text field. I can do this in Java like below.
In Java:
"abc_"+new SimpleDateFormat("ddMMyyyy_hhmmss").format(new Date());
But, using Robot Framework how can we add this timestamp value to User ID text field? i.e., Any keyword or library for getting timestamp?
Using Robot Framework:
input text | userId | abc_ | ???