I am working on Appium automation with Robot framework. Getting an exception while try to use Scroll Keyword in script:
WebDriverException: Message: Unknown mobile command “scroll”. Only shell,scrollBackTo,viewportScreenshot,deepLink,startLogsBroadcast,stopLogsBroadcast,acceptAlert,dismissAlert,batteryInfo,deviceInfo,changePermissions,getPermissions,performEditorAction,startScreenStreaming,stopScreenStreaming,getNotifications,listSms,type commands are supported.
Appium Library: 1.5.0.6
RobotFramework: 3.2.1
Python: 3.6.7
Device: Using Mobile lab (Android)
I had checked Appium Library Documentation, there it mentioned, Scroll keyword is available. Screenshot attached for reference.
Can anyone please provide any solution for Scroll method. I am working on WebApp in which i need to scroll to locate the elements. I had tried all three keywords available in Appium RF library. But they are not working. Throwing exception for same.
Please let me know if anyone has some idea for to resolve this issue.
WebDriverException: Message: Unknown mobile command “scroll”. indicates that python code talking to the webdriver fails because the webdriver itself does not implement “scroll” command.
You do not mention which webdriver you mention, eg UiAutomator2 or Espresso …
So i am looking if RobotFramework provides latest appium version 1.18.0. If you can provide any solution to upgrade RF library or any other way to scroll web page.
@Wolfe1 RF Appium Library shows latest version: 1.5.0.7. Does it means that it using Appium 1.5.0.7 only.
Appium latest version is 1.19.0, so if we use Appium server as 1.19.0 and RF Appium Library 1.5.0 then will it be a case of compatibility issue?
I am blocked due to this issue, can you suggest any solution to resolve this issue.
The version numbers between appium-library and appium are not lined up so that assumption is incorrect. I cannot promise that there is compatibility with the latest version of appium but the 1.18.x versions should work just fine.
Appium and appium-libraries versions work independently so you will need to update your appium version to at least 1.18.0
I tried to work on your suggestion, Updated Appium version to 1.18.0, but still Scroll is not working. I had used two Scroll keyword:
Scroll - provided start xpath and end xpath, element are able to locate in DOM but not able to scroll.
Sample Script:
Scroll xpath = //[@class=“open_search_overlay”] xpath = //[@class=“browsebtn”]
NoSuchElementException: Message: An element could not be located on the page using the given search parameters
Scroll Down Keyword: provided xpath but not able to scroll.
Sample Script:
Scroll Down xpath = //*[@class=“browsebtn”]
WebDriverException: Message: An unknown server-side error occurred while processing the command. Original error: Both strategy and selector arguments must be provided
I had tried on different websites with different locators but none worked for me. Even i tried other Keyword, Press Keyword for page down key but this keyword also not working.
Sample:
Press Keycode 34
Please suggest if you have any suggestion to overcome from this issue.
just make sure that your both elements are available / you can see in the screen (before scroll)
sometimes if the element is not display on screen, although available in log, the scroll not run.
i hope it can help someone. thx
Hello Guys, I’ve been having some difficulties with the Keyword “Scroll”
When initializing the Keyword, 2 Arguments are required (start_locator & end_locator)
I had understood that the 1_Argument would be the starting point, that is, an element at the top of the screen and the 2_Argument would be an element at the bottom of the screen.
Faced the same issue but now i have using the keyword like run keyword if and when the element is not found i will run the keyword swipe x y y x this i have been using as temp fix which it works on most cases