我为我的应用程序创建了一个XCUItesting的测试套件......但是,由于升级(不确定是否相关)到xcode 8和ios10模拟器的使用,我的测试用例只能在ios9中运行而不能在10中运行。当我在ios 10模拟器中运行测试时,我收到错误Assertion Failure: <unknown>:0: UI Testing Failure - Failure getting snapshot Error Domain=XCTestManagerErrorDomain Code=9 "Error -25204 getting snapshot for element <AXUIElement 0x7fe2a6614ad0> {pid=7751}" UserInfo={NSLocalizedDescription=Error -25204 getting snapshot for element <AXUIElement 0x7fe2a6614ad0> {pid=7751}}
是否还有人在体验这一点? 要么 有谁知道我哪里出错了?
非常感谢
答案 0 :(得分:2)
我遇到了同样的问题。测试失败并出现相同的错误,但根本原因是应用程序崩溃了。我设置了一个异常断点并打印出回溯以查看位置。
最后,它是由uitableviewdelegate
方法签名之一中隐式解包的可选项引起的崩溃:
public func tableView(_ tableView: UITableView, canPerformAction action: Selector, forRowAt indexPath: IndexPath, withSender sender: Any?) -> Bool
系统在indexPath
参数为nil
的UI测试期间调用此方法,导致应用挂起。
回溯显示了这一点:
(lldb) thread backtrace
* thread #1: tid = 0x128eaa, 0x000000010c776c3a libswiftFoundation.dylib`static Foundation.IndexPath._unconditionallyBridgeFromObjectiveC (Swift.Optional<__ObjC.NSIndexPath>) -> Foundation.IndexPath + 42, queue = 'com.apple.main-thread', stop reason = EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0)
* frame #0: 0x000000010c776c3a libswiftFoundation.dylib`static Foundation.IndexPath._unconditionallyBridgeFromObjectiveC (Swift.Optional<__ObjC.NSIndexPath>) -> Foundation.IndexPath + 42
frame #1: 0x0000000108443241 Static`@objc DataSource.tableView(UITableView, canPerformAction : Selector, forRowAt : IndexPath, withSender : Any?) -> Bool + 97 at DataSource.swift:0
frame #2: 0x00000001095aea31 UIKit`-[UITableView _canPerformAction:forCell:sender:] + 169
frame #3: 0x00000001098017c6 UIKit`-[UITableViewCell canPerformAction:withSender:] + 86
frame #4: 0x00000001210a5fc9 UIKit`-[UIResponder(UITextAccessibilityUtilities) _accessibilityHasTextOperations] + 100
frame #5: 0x000000012107bb7c UIKit`-[UITableViewCellAccessibilityElement _accessibilityHasTextOperations] + 48
frame #6: 0x00000001211f09ec UIAccessibility`-[NSObject(AXPrivCategory) accessibilityAttributeValue:] + 5945
frame #7: 0x000000012120bc04 UIAccessibility`_accessibilityAttributesForObject + 767
frame #8: 0x000000012120b5e8 UIAccessibility`-[NSObject(UIAccessibilityAutomation) _accessibilityUserTestingSnapshotDescendantsWithAttributes:maxDepth:maxChildren:maxArrayCount:] + 1736
frame #9: 0x000000012120cf96 UIAccessibility`-[NSObject(UIAccessibilityAutomation) _accessibilityUserTestingSnapshotWithOptions:] + 557
frame #10: 0x00000001211eec0a UIAccessibility`-[NSObject(AXPrivCategory) accessibilityAttributeValue:forParameter:] + 7903
frame #11: 0x00000001211d8856 UIAccessibility`_copyParameterizedAttributeValueCallback + 211
frame #12: 0x0000000120869532 AXRuntime`_AXXMIGCopyParameterizedAttributeValue + 216
frame #13: 0x0000000120863f1c AXRuntime`_XCopyParameterizedAttributeValue + 440
frame #14: 0x0000000120872de5 AXRuntime`mshMIGPerform + 266
frame #15: 0x00000001064e93d9 CoreFoundation`__CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 41
frame #16: 0x00000001064e9351 CoreFoundation`__CFRunLoopDoSource1 + 465
frame #17: 0x00000001064e1435 CoreFoundation`__CFRunLoopRun + 2389
frame #18: 0x00000001064e0884 CoreFoundation`CFRunLoopRunSpecific + 420
frame #19: 0x000000010e5bda6f GraphicsServices`GSEventRunModal + 161
frame #20: 0x000000010943dc68 UIKit`UIApplicationMain + 159
frame #21: 0x000000010462c95f GoOut`main + 111 at AppDelegate.swift:47
frame #22: 0x000000010cb7e68d libdyld.dylib`start + 1
frame #23: 0x000000010cb7e68d libdyld.dylib`start + 1
在知道导致它的方法之后,修复非常简单 - 只需将indexPath
类型替换为可选IndexPath?
(添加问号):
public func tableView(_ tableView: UITableView, canPerformAction action: Selector, forRowAt indexPath: IndexPath?, withSender sender: Any?) -> Bool
然后使用nil
正确调用该方法,并且不会导致崩溃。
有关详细信息,请参阅:https://openradar.appspot.com/31375101并随意使用雷达。
答案 1 :(得分:0)
您使用的是swift 2还是swift 3.在使用.hittable
(swift 2)或。isHittable
(swift 3)检查时,我似乎经常遇到该错误。看看删除命中检查是否有帮助。还有其他选项,而不是内置的命中检查。