SendKeys() from PickerWheel doesn't work

Does anyone successful set the value using method SendKeys on PickerWheel elements on iOS simulation? My code use to work on appium 1.5.3 but stop working on 1.7.1. Much appreciated if you can share

@enguyen1967 try setValue

((IOSElement) driver.findElement(MobileBy.className("XCUIElementTypePickerWheel"))).setValue(countryName);

Thanks Aleksei! however I am not sure the seValue() method available in my C# code. I didn’t see that method

Hi Aleksei! Are you using Java with appium right?

@enguyen1967 yes. And Java-client is the most powerfull from all.

Thanks. That explains why setValue() doesn’t work for me