← Back to team overview

sikuli-driver team mailing list archive

[Question #140390]: Delay between clicks after upgrading from Sikuli 0.10.2 to Sikuli-X

 

New question #140390 on Sikuli:
https://answers.launchpad.net/sikuli/+question/140390

Self-answered question. Maybe someone will search for this.


So, I'm using for application testing purposes the script generating random clicks in area

The code:
==========
def random_clicks(n):
	for i in range(n):
		x = random.randint(0,384)
		y = random.randint(0,502)
		click(mouseloc.right(x).below(y))
		wait(0.01)
==========

When I upgraded from Sikuli 10.2 for Mac to Sikuli-X RC1, I got significant speed drop - the script worked like in "Slow" mode.

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.