Attempting to scroll on iOS using Appium with C# code

Hey guys, I am kind of stuck right now and cannot find a simple way to use Appium to trigger a scroll on iOS with C# code. When I go to the documentation all I see is: // c# todo: csharp. Which is kind of discouraging. So, did anybody tackle the issue before and knows what should be done or if it’s even possible? Cheers, Pavel

Bump back to the top

Bummer :frowning: :frowning:

You can try:
iosdriver.Swipe(225, 320, 225, 500, 1000);
where iOSdriver = the name of the driver, Swipe is the action, 225 = start x, 320 = start y, 225= end x, 500 = end y, 1000 = time in ms.