How pick image on Albums - iOS testing KIF

拈花ヽ惹草 提交于 2019-12-12 04:53:09

问题


Faced with this problem, when you select an image from the album comes not click on the image. At point pressure also occurs. What to do?

used:[tester choosePhotoInAlbum:@"Moments" atRow:0 column:0]; As well as: [tester tapScreenAtPoint:CGPointMake(47, 150)];


回答1:


I was trying to figure this out as well.

Solved it by adding a [tester waitForTimeInterval:1] before [tester tapScreenAtPoint:CGPointMake(47, 150)]

Like this:

[tester tapViewWithAccessibilityLabel:@"Camera Roll"];  //Album Name
[tester waitForTimeInterval:1];
[tester tapScreenAtPoint:CGPointMake(47, 150)];
[tester tapViewWithAccessibilityLabel:@"Choose"];


来源:https://stackoverflow.com/questions/27194311/how-pick-image-on-albums-ios-testing-kif

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!