findAll not accepting Pattern as argument
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
SikuliX |
Fix Released
|
Undecided
|
Unassigned |
Bug Description
1: Sikuli 0.9.8
2: OS X 10.5.8
3: Write a script that uses findAll with a pattern as the argument (as documented at http://
finders = findAll(Pattern( ).similar(.96))
the argument to Pattern here is an image of the OSX Finder icon from the dock)
4:
[sikuli] [Error] source lineNo: 1
[sikuli] [Error] Traceback (innermost last):
File "/var/folders/
File "/Applications/
TypeError: findAll(): 1st arg can't be coerced to String
if I change the "findAll" in my example to "clickAll", "click", or "find" it works, just fine.
Changed in sikuli: | |
status: | New → In Progress |
tags: | added: 0.10 |
Changed in sikuli: | |
milestone: | none → 0.10.0 |
possible circumvention: .96).firstN( 1000)). regions
finders = find(Pattern( ).similar(
should give you that what findAll should return