Solved
Forum Discussion
rraghvani
Champion Level 3
3 years agoOops, I pasted the wrong code. It should be this.
To convert milliseconds to seconds, you divide by 1000.
Somethig like this,
Aliases.Fetchbtn.Click(); // Perform click here
const t1 = new Date(Date.now());
Log.Message("First button clicked at: " + t1.toUTCString());
Oops, I pasted the wrong code. It should be this.
To convert milliseconds to seconds, you divide by 1000.