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

    Status: Open => Answered

RaiMan proposed the following answer:
you can try the following, if your file names are arranged as some lines
in a Region:

reg = someRegion # to be defined somehow

lines = reg.collectLines()
# lines is a list of Match objects, one for each line found

for line in lines:
    print line.getText() # here you could check the line content as text
    #line.hover() # and click it in case

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

_______________________________________________
Mailing list: https://launchpad.net/~sikuli-driver
Post to     : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp

Reply via email to