如何使用 Frank Cucumber 从 UIImagePickerController 选择图片?
我试图使用 BDD 技术在 iPhone 模拟器中使用 Frank 检查导入图片过程。
问题是我无法调用从 UIImagePickerControllerSourceTypePhotoLibrary 源中选择图像的最后一步(使用按钮上的“触摸”命令启动 UIImagePickerController 非常容易)。
当我可以在模拟器中看到保存的图像时,它总是卡在进度中。 Frank Symbiote 说我想要触摸的对象是“PLAlbumViewCell”对象。
I was trying to use BDD technique to check the import picture process using Frank in the iPhone Simulator.
The problem is that I cannot call the last step of selecting an image from UIImagePickerControllerSourceTypePhotoLibrary source (launching the UIImagePickerController was very easy using "touch"-commands on a button).
It always stuck in the progress when I can see the saved images in the Simulator. The Frank Symbiote said the object I wanna touch is a "PLAlbumViewCell" object.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我今天刚刚解决了这个问题,基本上 PLAlbumView 继承自 UITableView,所以我创建了一个自定义步骤定义来选择第一张照片。
I just sorted this out today, basically PLAlbumView inherits from UITableView so I created a custom step definition to select the first photo.
我已经使用上面的代码行从 UIImagePickerController 选择第一张图像。
I have used above lines of code to select first image from UIImagePickerController.