Activity log for bug #1445940

Date Who What changed Old value New value Message
2015-04-19 15:31:52 RaiMan bug added bug
2015-04-19 15:32:03 RaiMan sikuli: status New Fix Committed
2015-04-19 15:32:07 RaiMan sikuli: importance Undecided High
2015-04-19 15:32:11 RaiMan sikuli: assignee RaiMan (raimund-hocke)
2015-04-19 15:32:18 RaiMan sikuli: milestone 1.1.0
2015-04-19 15:45:51 RaiMan summary [1.0.1] Finder: seems to only find one match [1.0.1] Finder.find(): only finds one match --- use Finder.findAll() to find more than one
2015-04-19 15:46:51 RaiMan description I am using Sikulix 1.1.0 (2015-01-16_01:00nightly) on win 7 I try to implement the codes on example 2 of http://doc.sikuli.org/finder.html f = Finder("stars.png") img = "star.png" f.find(img) mm = [] while f.hasNext(): mm.append(f.next()) print f.hasNext() f.destroy() print len(mm) for m in mm: print m The result is supposed to be 5 matches. However, I only get 1 M[30,32 23x23]@S(S(0)[0,0 1920x1080]) S:1.00 C:41,43 [0/0 msec] Please help. Thanks. ---------- problem the docs are not showing the API and behaviour with 1.1.0 ---------------------------------------------------------- I am using Sikulix 1.1.0 (2015-01-16_01:00nightly) on win 7 I try to implement the codes on example 2 of http://doc.sikuli.org/finder.html f = Finder("stars.png") img = "star.png" f.find(img) mm = [] while f.hasNext():     mm.append(f.next()) print f.hasNext() f.destroy() print len(mm) for m in mm:     print m The result is supposed to be 5 matches. However, I only get 1 M[30,32 23x23]@S(S(0)[0,0 1920x1080]) S:1.00 C:41,43 [0/0 msec] Please help. Thanks.
2015-04-19 16:08:34 RaiMan sikuli: importance High Critical
2015-04-19 16:08:56 RaiMan summary [1.0.1] Finder.find(): only finds one match --- use Finder.findAll() to find more than one [1.0.1] Finder.find(): only finds one match --- use Finder.findAll() to find more than one --- docs fixed
2015-04-19 16:12:25 RaiMan description ---------- problem the docs are not showing the API and behaviour with 1.1.0 ---------------------------------------------------------- I am using Sikulix 1.1.0 (2015-01-16_01:00nightly) on win 7 I try to implement the codes on example 2 of http://doc.sikuli.org/finder.html f = Finder("stars.png") img = "star.png" f.find(img) mm = [] while f.hasNext():     mm.append(f.next()) print f.hasNext() f.destroy() print len(mm) for m in mm:     print m The result is supposed to be 5 matches. However, I only get 1 M[30,32 23x23]@S(S(0)[0,0 1920x1080]) S:1.00 C:41,43 [0/0 msec] Please help. Thanks. ---------- fixed 2015-04-19 the docs are not showing the API and behaviour with 1.1.0 the docs for version 1.1.0: http://sikulix-2014.readthedocs.org/en/latest/index.html ---------------------------------------------------------- I am using Sikulix 1.1.0 (2015-01-16_01:00nightly) on win 7 I try to implement the codes on example 2 of http://doc.sikuli.org/finder.html f = Finder("stars.png") img = "star.png" f.find(img) mm = [] while f.hasNext():     mm.append(f.next()) print f.hasNext() f.destroy() print len(mm) for m in mm:     print m The result is supposed to be 5 matches. However, I only get 1 M[30,32 23x23]@S(S(0)[0,0 1920x1080]) S:1.00 C:41,43 [0/0 msec] Please help. Thanks.