← Back to team overview

sikuli-driver team mailing list archive

Re: [Question #404173]: Compare a part of image in a source image using selenium

 

Question #404173 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/404173

    Status: Open => Answered

masuo proposed the following answer:
[example:]
#find smallimage.png within bigimage.png and extract text from right of smallimage.
f = Finder("c:\\work\\bigimage.png")
f.findAll("smallimage.png")

while f.hasNext():
    print f.next().right(100).text()

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.