mherrmann/helium

cant choose scroll location

Opened this issue · 3 comments

i make hover over right side but it scrolls down left side menu not right

found a work around for my situation,
Is there a way i can write if i wanna press(ARROW_DOWN) 25x
instead of of writing
press(ARROW_DOWN)
press(ARROW_DOWN)
press(ARROW_DOWN)
.....25x

You could probably just use:

for i in range(25): press(ARROW_DOWN)

or the best way : scroll_down(number of pixels)