2
Derzeit greife ich auf Fotogalerie und ein Foto die folgende Art und Weise holen:Wie ein Bild an einem Index von UIImagePickerController unter UITests in Xcode auswählen?
extension XCUIApplication {
func pickPhotoFromImagePickerAtIndex(index: UInt) {
tables.buttons["Moments"].tap()
collectionViews["PhotosGridView"].tapCellAtIndex(index)
}
}
Beispiel:
photosCollectionView.tapCellAtIndex(0)
app.pickPhotoFromImagePickerAtIndex(5)
Diese Methode stürzt manchmal. Es hängt von Fotos in der Galerie ab.
Gibt es eine Möglichkeit, dies eleganter und effektiver zu tun?