Automating uipickerwheel

Hi

I am using latest version of appium : 1.3, .
And i need to automate datepicker i.e. UiPickerWheel.

Can anyone help me over this.

Thanks

Use sendkeys for that, it works fine

// define a webelement with the pickerWheel you want to set the values on, here I’m using xpath
// then use sendKeys() to set the value

WebElement _pickerWheel = driver.findElement(By.xpath(“yourpath/UIAPicker[1]/UIAPickerWheel[1]”));
_pickerWheel.sendKeys(“value”);

Yes it works for me also