sshah1
9 years agoContributor
How to convert time value in Milliseconds?
Hi, I have time value as string like this - 0000:00:05.016 Is it possible with TestComplete to -- 1) Convert above string to time 2) Get total time as Milliseconds - 5016 ms aqConvert["StrToT...
- 9 years ago
If you are using jScript you can create a date using
var d = new Date(year, month, day, hours, minutes, seconds, milliseconds);
so you can create date and manupulate as you like eg
var d = new Date(2016,00,28,16,45,19,50) Log.Message(d) Log.Message(d.getMilliseconds()+d.getSeconds()*1000);
- 9 years ago
Thanks for your response. Yes, it works.