我有选择器。选择器有 2 列。如何在选择器使用 KIF 中选择两个值?示例:http: //i.stack.imgur.com/sbwj2.png
我尝试使用下一个:
NSArray *date = @[@"Honda", @"Civic"];
[tester selectDatePickerValue:date];
和:
[tester selectPickerViewRowWithTitle:@"Honda" inComponent:0];
和:
[tester selectPickerViewRowsWithTitles:@[@"Toyota", @"Land Cruiser"]];
总是出现错误:
UIDatePicker 没有预期的列数
没有任何帮助。也许我在某个地方错过了什么?