-
-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scrolling on The Page #229
Comments
This endpoint actually emulates the vertical or horizontal rotation of the mouse wheel. So, make sure you can scroll the given element at the given coordinate manually. Also verify if it needs to have the focus to be able to scroll. |
I have tried that but It did not work, is there any examples I can refer too please? |
What if you increase deltaY by multiplying it to The documentation to this API says
|
I have the same issue.
Appium windows driver : 2.12.16 Any suggestions ? |
Warning:
I am following this to make scrolling on the page https://github.com/appium/appium-windows-driver#windows-scroll. But whatever I do I keep getting unknown server-side issues, I am just trying to scroll down and up on the page . I see element id or x and y coordinates must be provided but If I am doing scrolling through the page I believe I don't need those coordinates right? anyway if I do I still get an issue.
Here is my logic
1- Map<String, Object> params = new HashMap<>();
// // params.put("elementId", startElementId);
params.put("x", 100);
params.put("y", 100);
if I put element id there and take off x and y coordinates I still get issues , I tried to put ms duration time as well but that does not change anything still same issue,
Any suggestions please?
The text was updated successfully, but these errors were encountered: