2
votes

Do you know how to check the script execution time in Selenium IDE? What kind of command or option I should use?

Thanks in advance!

1
@kaya Thanks but I need the answer - not a comment like this :) - Andy Bern
My bad, that comment was for another question - akaya

1 Answers

6
votes

I was wondering the same thing, and this is what I came up with.

storeEval | new Date().getTime() | startTime

// The rest of your code here

storeEval | new Date().getTime() | endTime
storeEval | (${endTime} - ${startTime}) / 1000 | scriptExecutionTime 
echo      | ${scriptExecutionTime} seconds |