WinAppDriver
WinAppDriver copied to clipboard
Unable to click element with offsets in Windows UWP App
Automation testing a Windows UWP App Using below command unable to click on element 5,5 coordinates , it always clicks on middle of element
new TouchAction(Base.uwpDriver).press(ElementOption.element(driver.findElement(object), 5, 5)).perform();
raised as its specific to WinAppDriver Refer https://github.com/appium/appium/issues/17016
I dont know much about UWP, are you able to use Actions?
Try something like this
Actions.MoveToElement(element, 5, 5).Click().Perform();
see my reply to your other issue