如何使用 Frank Cucumber 从 UIImagePickerController 选择图片?

发布于 2025-01-08 14:08:26 字数 317 浏览 0 评论 0原文

我试图使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

堇色安年 2025-01-15 14:08:26

我今天刚刚解决了这个问题,基本上 PLAlbumView 继承自 UITableView,所以我创建了一个自定义步骤定义来选择第一张照片。

When /^I select the first photo$/ do
  frankly_map( "tableView", "touchx:y:", '10', '10' )
end

I just sorted this out today, basically PLAlbumView inherits from UITableView so I created a custom step definition to select the first photo.

When /^I select the first photo$/ do
  frankly_map( "tableView", "touchx:y:", '10', '10' )
end
黑色毁心梦 2025-01-15 14:08:26
images = frankly_map( "view:'PUPhotosGridCell'", 'tag' )
  if images.count > 0
    touch ("view:'PUPhotosGridCell' first")
  end

我已经使用上面的代码行从 UIImagePickerController 选择第一张图像。

images = frankly_map( "view:'PUPhotosGridCell'", 'tag' )
  if images.count > 0
    touch ("view:'PUPhotosGridCell' first")
  end

I have used above lines of code to select first image from UIImagePickerController.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文