I have an issue with selecting the date from the UIDatePicker. After the [KIFTestStep stepToEnterDate:ticketsInHandDate ToDatePickerWithAccessibilityLabel:@"datePicker"]]; is executed the UIDatePicker is set to the given date
- (IBAction)dateChangedAction:(id)sender
{
// If we invoke the setter, the original date will be overwritten.
[dateValue release];
dateValue = [datePicker.date retain];
dateCell.detailTextLabel.text = [[[self class] sharedFormatter] stringFromDate:dateValue];
[self setDateTitleText:[[[self class] sharedFormatter] stringFromDate:dateValue]];
}
is not being called. hence the dateValue is being to set to the new date.
Please let me know if you have any ideas whats going on.