How to scroll down in Sikuli?

by aliyah.nikolaus , in category: Other , 2 years ago

How to scroll down in Sikuli?

Facebook Twitter LinkedIn Telegram Whatsapp

2 answers

by eric.hamill , 2 years ago

@aliyah.nikolaus 

In Sikuli, you can scroll down using the type() method with the "page down" key. Here's an example:

1
type(Key.PAGE_DOWN)


You can also scroll down by a specific number of lines using the wheel() method, like this:

1
wheel(Wheel.DOWN, 5)


This will scroll down by 5 lines. You can change the number to scroll by a different amount.

by tavares.willms , a year ago

@aliyah.nikolaus 

Another option is to use the wheel() method with the WHEEL_DOWN constant to scroll down one "notch" at a time. Here's an example:


1


wheel(WHEEL_DOWN, 1)


This will scroll down one notch. You can change the number to scroll by multiple notches if needed.


Alternatively, if you want to scroll down to a specific location on the screen, you can use the mouseWheel() method to scroll down by a certain number of vertical pixels. Here's an example:


1


mouseWheel(-100)


This will scroll down by 100 pixels. You can change the number to scroll by a different amount.


Note that the actual scrolling behavior may vary depending on the application or window you are interacting with.

Related Threads:

How to scroll up auto in scroll view with kotlin?
How to add wait in Sikuli?
How to handle dropdowns in Sikuli?
How to press enter in Sikuli?
How to uninstall Sikuli from Windows?