sikuli-driver team mailing list archive
-
sikuli-driver team
-
Mailing list archive
-
Message #03367
Re: [Question #99475]: Novice: How to include page down key
Question #99475 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/99475
RaiMan posted a new comment:
no idea, why page_down does not work in your situation. I tested on my
Win7/FF4 and had no problems with a workflow like yours.
you could give wheel (http://sikuli.org/docx/region.html#Region.wheel) a
try.
--- comment on your solution:
for n in range(0, 40):
click(image_of_scrollarrow)
this might be faster:
m = find(image_of_scrollarrow)
for n in range(40): click(m)
the implicit search behind your repeated click costs about 0.5 seconds
each when searching the whole screen.
--
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.