The date pickerwheeler field has 4 sections :
- Time hours ( i.e 01,02,03, etc)
- time minutes
- am or pm
All these values are set by using the sendkeys function.
eg:
pickerwheelerElement.sendkeys(“01”)
pickerwheelerElement.sendkeys(“pm”)
But the date value is not set using sendkeys. when check the value of the date section using the object inspector its displayed in the format “Fri, 29 Apr”.
the following statement does not set the date value :
pickerwheelerElement.sendkeys(“Fri, 29 Apr”)
any idea what string to pass in the sendkeys to set the date value in the ios date picker wheeler?