sikuli-driver team mailing list archive
-
sikuli-driver team
-
Mailing list archive
-
Message #13747
Re: [Question #211455]: Creating time markers in sikuli
Question #211455 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/211455
Brian Redmond posted a new comment:
Here's my method for timing my scripts:
from time import clock
from datetime import timedelta
scriptStart = clock()
#script body goes here
popup('Test Run completed. Time elapsed: ' +
str(timedelta(seconds=(int(clock() - scriptStart)))))
--
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.