I am getting following error for datetime in robotframework:
ValueError: time data '1609-38-90 78:55:36.030000' does not match format '%Y-%m-%d %H:%M:%S.%f'
Below is my code:
${lte_epoch_time} Get Current Date result_format=%Y-%m-%d %H:%M:%S.%f
You have the answer in your question itself. '1609-38-90 78:55:36.030000' is not a valid date format. Month can not be 38 and day 90 and hours 78. You need to clean your data set before any preprocessing
'1609-38-90 78:55:36.030000'
2.1m questions
2.1m answers
60 comments
57.0k users