I'm running some test automation on a Windows application with Appium and WebDriverIO. I need to scroll in a certain part of my application, but can't figure out how to do it.
I've tried leveraging WebDriverIO's scrollIntoView() method, but I'm getting a Could Not Proxy error (maybe because WinAppDriver doesn't handle this method?)
I've also tried browser.touchScroll(xOffset: int, yOffset: int, string?:ElementID
, but I'm confused on the last parameter. In order to interact with UI elements, I've been using the accessibilityID selector method ('~'). But the parameter simply asks for a string, not an Element. I've tried using the ~
and also just putting in the accessibilityID of the element, but it's not finding the element.
Does anyone have an idea that can help me? I'd appreciate it!