sikuli-driver team mailing list archive
-
sikuli-driver team
-
Mailing list archive
-
Message #53524
Re: [Question #686256]: Findtext
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.