Convert string to seconds - Robot framework
问题 I am getting a time stamp from a page using: || ${value}= | Get Text | //span[@class='time'] it is returning a value in this format "Apr 28, 2015 03:03 AM AST". I want to convert it to seconds so that I can compare the time stamp with another event that has occurred previously in my test cases. For previous event I have used the following and I am getting results in seconds: || ${secs} = | Get Time | epoch Please let me know which info I am missing in above and I will edit my question. I