sikuli-driver team mailing list archive
-
sikuli-driver team
-
Mailing list archive
-
Message #11568
Re: [Question #202584]: can i use sikuli for performance testing..?
Question #202584 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/202584
Status: Open => Answered
RaiMan proposed the following answer:
depends.
Sikuli itself does not contain any timing features.
principally something like this would work on the script level to test
the response times of a GUI:
click(some_button)
start = time.time()
wait(some_image, 10)
print "responstime:", int(time.time()-start), "msec"
this might be integrated with a test runner and some reporting.
--
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.