can i use sikuli for performance testing..?

Asked by jagjeet

i want to trap Request and Response of the application via sikuli. is it possible ..? can i use sikuli for performance testing,,,???

Question information

Language:
English Edit question
Status:
Answered
For:
SikuliX Edit question
Assignee:
No assignee Edit question
Last query:
Last reply:
Revision history for this message
RaiMan (raimund-hocke) said :
#1

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.

Revision history for this message
RaiMan (raimund-hocke) said :
#2

Since depending on the size of the search region, a search might consume up a second on slow systems having large screens, search optimization would be vital.

If your app's performance expectations is in the below second area, you might have to adjust the results by the search times. In this case, you have to step down to the Java level.

Can you help with this problem?

Provide an answer of your own, or ask jagjeet for more information if necessary.

To post a message you must log in.