Time set on Mobile app

Time field

I have mobile app which has time field. I wanted to set time as 09:00 AM or 09:00PM

Please help me to achieve this. How to achieve this using Katalon script.

Have you tried?

Mobile.setText(findTestObject('yourTo'), "09:00 AM", 10)

or

Mobile.tap(findTestObject('yourTo'))
Mobile.sendKeys( "09:00 AM")