diff --git a/.changeset/calm-tabs-wait.md b/.changeset/calm-tabs-wait.md
new file mode 100644
index 00000000..8517e693
--- /dev/null
+++ b/.changeset/calm-tabs-wait.md
@@ -0,0 +1,5 @@
+---
+'react-native-bottom-tabs': patch
+---
+
+Prevent a white flash when opening a lazy tab for the first time on iOS 27.
diff --git a/apps/example/src/Examples/NativeBottomTabsLazy.tsx b/apps/example/src/Examples/NativeBottomTabsLazy.tsx
index 3a1e3bce..9de4124c 100644
--- a/apps/example/src/Examples/NativeBottomTabsLazy.tsx
+++ b/apps/example/src/Examples/NativeBottomTabsLazy.tsx
@@ -1,11 +1,19 @@
import { Article } from '../Screens/Article';
import { Albums } from '../Screens/Albums';
import { Contacts } from '../Screens/Contacts';
-import { Chat } from '../Screens/Chat';
import { createNativeBottomTabNavigator } from '@bottom-tabs/react-navigation';
+import { StyleSheet, Text, View } from 'react-native';
const Tab = createNativeBottomTabNavigator();
+function DarkScreen() {
+ return (
+
+ Lazy screen with dark content
+
+ );
+}
+
export default function NativeBottomTabsLazy() {
return (
@@ -32,12 +40,26 @@ export default function NativeBottomTabsLazy() {
}}
/>
require('../../assets/icons/chat_dark.png'),
}}
/>
);
}
+
+const styles = StyleSheet.create({
+ darkScreen: {
+ flex: 1,
+ alignItems: 'center',
+ justifyContent: 'center',
+ backgroundColor: '#1E2D2F',
+ },
+ darkScreenText: {
+ color: '#F7DBA7',
+ fontSize: 24,
+ },
+});
diff --git a/artifacts/issue-547/README.md b/artifacts/issue-547/README.md
new file mode 100644
index 00000000..6bfb5141
--- /dev/null
+++ b/artifacts/issue-547/README.md
@@ -0,0 +1,38 @@
+# Issue #547 verification evidence
+
+This directory records the reproduction and verification for the iOS 27 lazy-tab white flash.
+
+## Environment
+
+- Base commit: `1bbcaa2`
+- Xcode: 27.0 (`27A5228h`)
+- iOS 27 simulator runtime: 27.0 (`24A5390f`)
+- iOS 27 device: iPhone 17 Pro (`CD1ADD09-474F-4618-899B-689243327BC6`)
+- Compatibility runtime: iOS 26.5 (`23F77`)
+- iOS 26 device: iPhone 17 Pro (`951CC10B-1B07-48EE-8636-59386FD2C58C`)
+- Example app: React Native 0.81.4, Hermes, New Architecture
+- `agent-device`: 0.20.10
+
+## Reproduction
+
+The current example app's **Native > Lazy Tabs** screen was launched with the navigator's default `lazy: true`. Starting on Article, Contacts was selected for the first time while recording at 50 fps. The native tab switched before React had mounted the lazy scene, producing a fully white content frame between the two screens.
+
+- [`before/videos/first-lazy-contacts-review.mp4`](before/videos/first-lazy-contacts-review.mp4): three-second review clip
+- [`before/screenshots/transition-contact-sheet.png`](before/screenshots/transition-contact-sheet.png): sampled transition frames
+- [`before/screenshots/white-flash-frame.png`](before/screenshots/white-flash-frame.png): captured white frame
+- [`before/logs/app.log`](before/logs/app.log): application log for the run
+
+The untrimmed 50 fps capture and gesture telemetry are retained in `before/videos/`.
+
+## Verification after the fix
+
+The identical first activation was recorded at 75 fps. Article remains visible until the mounted Contacts scene is ready; no empty frame appears. A second run activates a lazy screen with a permanent `#1E2D2F` background, confirming that the implementation does not depend on masking the transition with the default color.
+
+- [`after/videos/first-lazy-contacts.mp4`](after/videos/first-lazy-contacts.mp4): default appearance, 3.29 seconds at 75 fps
+- [`after/screenshots/contacts-transition-contact-sheet.png`](after/screenshots/contacts-transition-contact-sheet.png): sampled default transition frames
+- [`after/videos/first-lazy-dark.mp4`](after/videos/first-lazy-dark.mp4): non-white appearance, 3.67 seconds at 75 fps
+- [`after/screenshots/dark-transition-contact-sheet.png`](after/screenshots/dark-transition-contact-sheet.png): sampled dark transition frames
+- [`after/logs/app.log`](after/logs/app.log): application log for both fixed runs
+- [`after/logs/xcodebuild-ios27.log`](after/logs/xcodebuild-ios27.log): successful iOS 27 simulator build
+
+For each fixed run, accessibility state was explicitly queried after the interaction: the first Contacts row was `M, Marissa Castillo, 7766398169`, and the dark screen exposed `Lazy screen with dark content`. The same first-load Contacts path was also exercised on iOS 26.5; [`after/ios26/contacts-loaded.png`](after/ios26/contacts-loaded.png) records the resulting state.
diff --git a/artifacts/issue-547/after/ios26/contacts-loaded.png b/artifacts/issue-547/after/ios26/contacts-loaded.png
new file mode 100644
index 00000000..7c6c8791
Binary files /dev/null and b/artifacts/issue-547/after/ios26/contacts-loaded.png differ
diff --git a/artifacts/issue-547/after/logs/app.log b/artifacts/issue-547/after/logs/app.log
new file mode 100644
index 00000000..772bb8d4
--- /dev/null
+++ b/artifacts/issue-547/after/logs/app.log
@@ -0,0 +1,4350 @@
+[agent-device][mark][2026-08-27T00:18:31.610Z] before fixed first lazy Contacts activation
+getpwuid_r did not find a match for uid 501
+Filtering the log data using "subsystem == "bottomtabs.example" OR subsystem CONTAINS "bottomtabs.example" OR processImagePath ENDSWITH[c] "/bottomtabs.example" OR senderImagePath ENDSWITH[c] "/bottomtabs.example" OR process == "ReactTestApp" OR processImagePath ENDSWITH[c] "/ReactTestApp" OR senderImagePath ENDSWITH[c] "/ReactTestApp" OR processImagePath CONTAINS[c] "/ReactTestApp.app/" OR senderImagePath CONTAINS[c] "/ReactTestApp.app/""
+Timestamp Ty Process[PID:TID]
+2026-08-27 01:18:31.817 E ReactTestApp[1584:8737de0] [com.apple.UIKit:Assert] -[UIApplication statusBarStyle] API has been deprecated and is a no-op on 27.0 and later.
+2026-08-27 01:18:31.818 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002)
+2026-08-27 01:18:31.818 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025)
+2026-08-27 01:18:31.819 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data:
+2026-08-27 01:18:31.819 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data:
+2026-08-27 01:18:31.826 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025)
+2026-08-27 01:18:31.826 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data:
+2026-08-27 01:18:36.630 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Received request to fetch matches for query:
+2026-08-27 01:18:36.630 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Evaluating query:
+2026-08-27 01:18:36.630 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Getting root element snapshot
+2026-08-27 01:18:36.630 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query
+2026-08-27 01:18:36.630 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes .
+2026-08-27 01:18:36.630 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:36.630 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:36.630 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:36.630 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:36.630 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:36.631 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got main window {pid=1584} {uid=[ID:4 hash:0x10a048880]}
+2026-08-27 01:18:36.631 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeParent, XC_kAXXCAttributeIdentifier, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits
+2026-08-27 01:18:36.631 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with parameters {
+ attributes = (
+ 5003,
+ 5004,
+ 5002,
+ 5019,
+ 5058,
+ 2004
+ );
+ maxArrayCount = 2147483647;
+ maxChildren = 2147483647;
+ maxDepth = 2147483647;
+ snapshotKeyHonorModalViews = 0;
+ traverseFromParentsToChildren = 1;
+}
+2026-08-27 01:18:36.631 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004
+2026-08-27 01:18:36.661 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got snapshot for {pid=1584} {uid=[ID:1 hash:0x0]}
+2026-08-27 01:18:36.661 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0
+2026-08-27 01:18:36.661 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s
+2026-08-27 01:18:36.661 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Found main window: Window
+2026-08-27 01:18:36.661 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Preferring automation type 48 instead of legacy element type OTHER derived from class/trait: UILabel:UILabel 8590000128
+2026-08-27 01:18:36.662 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.662 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.662 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.662 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.662 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.662 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Preferring automation type 24 instead of legacy element type OTHER derived from class/trait: _UIFloatingBarContainerView:_UIFloatingBarContainerView 8589934592
+2026-08-27 01:18:36.663 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Query found matching snapshots: {(
+ Application, pid: 1584
+)} (error: (null))
+2026-08-27 01:18:36.663 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Replying to query with results: (error: (null))
+2026-08-27 01:18:36.664 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Received attributes request for element: App element pid: 1584. Attributes: (
+ "XC_kAXXCAttributeFrame",
+ "XC_kAXXCAttributeWindowDisplayId",
+ "XC_kAXXCAttributeWindowContextId"
+)
+2026-08-27 01:18:36.664 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:36.664 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:36.664 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:36.664 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:36.664 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:36.664 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeFrame, XC_kAXXCAttributeWindowDisplayId, XC_kAXXCAttributeWindowContextId for App element pid: 1584
+2026-08-27 01:18:36.664 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return.
+2026-08-27 01:18:36.665 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Replying with attribute values: {
+ "XC_kAXXCAttributeFrame" = {
+ Height = 874;
+ Width = 402;
+ X = 0;
+ Y = 0;
+ };
+ "XC_kAXXCAttributeWindowContextId" = 1508916392;
+ "XC_kAXXCAttributeWindowDisplayId" = 0;
+}
+2026-08-27 01:18:36.666 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Received request to fetch matches for query:
+2026-08-27 01:18:36.666 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Evaluating query:
+2026-08-27 01:18:36.666 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Getting root element snapshot
+2026-08-27 01:18:36.666 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query
+2026-08-27 01:18:36.666 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes .
+2026-08-27 01:18:36.666 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:36.666 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:36.666 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:36.666 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:36.666 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:36.667 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got main window {pid=1584} {uid=[ID:4 hash:0x10a048880]}
+2026-08-27 01:18:36.667 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeParent, XC_kAXXCAttributeIdentifier, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits
+2026-08-27 01:18:36.667 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with parameters {
+ attributes = (
+ 5003,
+ 5004,
+ 5002,
+ 5019,
+ 5058,
+ 2004
+ );
+ maxArrayCount = 2147483647;
+ maxChildren = 2147483647;
+ maxDepth = 2147483647;
+ snapshotKeyHonorModalViews = 0;
+ traverseFromParentsToChildren = 1;
+}
+2026-08-27 01:18:36.667 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004
+2026-08-27 01:18:36.693 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got snapshot for {pid=1584} {uid=[ID:1 hash:0x0]}
+2026-08-27 01:18:36.693 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0
+2026-08-27 01:18:36.693 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s
+2026-08-27 01:18:36.693 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Found main window: Window
+2026-08-27 01:18:36.694 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Preferring automation type 48 instead of legacy element type OTHER derived from class/trait: UILabel:UILabel 8590000128
+2026-08-27 01:18:36.694 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.694 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.694 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.694 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.694 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.694 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Preferring automation type 24 instead of legacy element type OTHER derived from class/trait: _UIFloatingBarContainerView:_UIFloatingBarContainerView 8589934592
+2026-08-27 01:18:36.695 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Query found matching snapshots: {(
+ Application, pid: 1584
+)} (error: (null))
+2026-08-27 01:18:36.695 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Replying to query with results: (error: (null))
+2026-08-27 01:18:36.742 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Received request to fetch matches for query:
+2026-08-27 01:18:36.742 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Evaluating query:
+2026-08-27 01:18:36.742 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Getting root element snapshot
+2026-08-27 01:18:36.742 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query
+2026-08-27 01:18:36.742 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes .
+2026-08-27 01:18:36.742 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:36.742 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:36.742 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:36.742 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:36.742 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:36.743 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got main window {pid=1584} {uid=[ID:4 hash:0x10a048880]}
+2026-08-27 01:18:36.743 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeParent, XC_kAXXCAttributeIdentifier, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits
+2026-08-27 01:18:36.743 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with parameters {
+ attributes = (
+ 5003,
+ 5004,
+ 5002,
+ 5019,
+ 5058,
+ 2004
+ );
+ maxArrayCount = 2147483647;
+ maxChildren = 2147483647;
+ maxDepth = 2147483647;
+ snapshotKeyHonorModalViews = 0;
+ traverseFromParentsToChildren = 1;
+}
+2026-08-27 01:18:36.743 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004
+2026-08-27 01:18:36.770 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got snapshot for {pid=1584} {uid=[ID:1 hash:0x0]}
+2026-08-27 01:18:36.770 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0
+2026-08-27 01:18:36.770 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s
+2026-08-27 01:18:36.770 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Found main window: Window
+2026-08-27 01:18:36.770 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Preferring automation type 48 instead of legacy element type OTHER derived from class/trait: UILabel:UILabel 8590000128
+2026-08-27 01:18:36.771 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.771 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.771 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.771 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.771 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.771 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Preferring automation type 24 instead of legacy element type OTHER derived from class/trait: _UIFloatingBarContainerView:_UIFloatingBarContainerView 8589934592
+2026-08-27 01:18:36.771 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Query found matching snapshots: {(
+ Application, pid: 1584
+)} (error: (null))
+2026-08-27 01:18:36.771 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Replying to query with results: (error: (null))
+2026-08-27 01:18:36.772 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Received attributes request for element: App element pid: 1584. Attributes: (
+ "XC_kAXXCAttributeFrame",
+ "XC_kAXXCAttributeWindowDisplayId",
+ "XC_kAXXCAttributeWindowContextId"
+)
+2026-08-27 01:18:36.772 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:36.772 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:36.773 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:36.773 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:36.773 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeFrame, XC_kAXXCAttributeWindowDisplayId, XC_kAXXCAttributeWindowContextId for App element pid: 1584
+2026-08-27 01:18:36.773 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:36.773 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return.
+2026-08-27 01:18:36.773 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Replying with attribute values: {
+ "XC_kAXXCAttributeFrame" = {
+ Height = 874;
+ Width = 402;
+ X = 0;
+ Y = 0;
+ };
+ "XC_kAXXCAttributeWindowContextId" = 1508916392;
+ "XC_kAXXCAttributeWindowDisplayId" = 0;
+}
+2026-08-27 01:18:36.775 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Button
+2026-08-27 01:18:36.775 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Evaluating query:
+ ↪︎ Descendants matching type Button
+2026-08-27 01:18:36.775 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Getting root element snapshot
+2026-08-27 01:18:36.776 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type Button
+2026-08-27 01:18:36.776 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits.
+2026-08-27 01:18:36.776 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:36.776 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:36.776 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:36.776 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:36.776 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:36.776 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got main window {pid=1584} {uid=[ID:4 hash:0x10a048880]}
+2026-08-27 01:18:36.776 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeParent, XC_kAXXCAttributeIdentifier, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits
+2026-08-27 01:18:36.776 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with parameters {
+ attributes = (
+ 5003,
+ 5004,
+ 5002,
+ 5019,
+ 5058,
+ 2004
+ );
+ maxArrayCount = 2147483647;
+ maxChildren = 2147483647;
+ maxDepth = 2147483647;
+ snapshotKeyHonorModalViews = 0;
+ traverseFromParentsToChildren = 1;
+}
+2026-08-27 01:18:36.776 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004
+2026-08-27 01:18:36.803 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got snapshot for {pid=1584} {uid=[ID:1 hash:0x0]}
+2026-08-27 01:18:36.803 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0
+2026-08-27 01:18:36.803 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s
+2026-08-27 01:18:36.803 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Found main window: Window
+2026-08-27 01:18:36.803 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Preferring automation type 48 instead of legacy element type OTHER derived from class/trait: UILabel:UILabel 8590000128
+2026-08-27 01:18:36.804 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.804 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.804 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.804 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.804 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.804 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Preferring automation type 24 instead of legacy element type OTHER derived from class/trait: _UIFloatingBarContainerView:_UIFloatingBarContainerView 8589934592
+2026-08-27 01:18:36.804 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:36.804 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:36.804 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:36.804 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:36.804 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:36.804 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to
+2026-08-27 01:18:36.804 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers
+↪︎ Descendants matching type Button
+2026-08-27 01:18:36.805 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Button` to input {(
+ Application, pid: 1584
+)}, found {(
+ Button, identifier: 'BackButton',
+ Button, Selected,
+ Button,
+ Button,
+ Button,
+ Button
+)}
+2026-08-27 01:18:36.805 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] [Match All] setting out related elements {(
+)}
+2026-08-27 01:18:36.809 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Current tree:
+Application, 0x127ff8bc0, pid: 1584
+ Window (Main), 0x127ff8d40
+ Other, 0x10aad9e40
+ Other, 0x127ff8740
+ Other, 0x127ff88c0
+ Other, 0x127ffeec0
+ Other, 0x127ff8a40
+ Other, 0x10aaa1440
+ Other, 0x127ff8140
+ Other, 0x127ff82c0
+ Other, 0x127ff8440
+ NavigationBar, 0x11<…>
+2026-08-27 01:18:36.809 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Button found matching snapshots: {(
+ Button, identifier: 'BackButton',
+ Button, Selected,
+ Button,
+ Button,
+ Button,
+ Button
+)} (error: (null))
+2026-08-27 01:18:36.810 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Button with results: (error: (null))
+2026-08-27 01:18:36.815 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Link
+2026-08-27 01:18:36.815 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Evaluating query:
+ ↪︎ Descendants matching type Link
+2026-08-27 01:18:36.815 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Getting root element snapshot
+2026-08-27 01:18:36.815 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type Link
+2026-08-27 01:18:36.815 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits.
+2026-08-27 01:18:36.815 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:36.815 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:36.815 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:36.815 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:36.815 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:36.816 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got main window {pid=1584} {uid=[ID:4 hash:0x10a048880]}
+2026-08-27 01:18:36.816 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeParent, XC_kAXXCAttributeIdentifier, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits
+2026-08-27 01:18:36.816 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with parameters {
+ attributes = (
+ 5003,
+ 5004,
+ 5002,
+ 5019,
+ 5058,
+ 2004
+ );
+ maxArrayCount = 2147483647;
+ maxChildren = 2147483647;
+ maxDepth = 2147483647;
+ snapshotKeyHonorModalViews = 0;
+ traverseFromParentsToChildren = 1;
+}
+2026-08-27 01:18:36.816 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004
+2026-08-27 01:18:36.843 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got snapshot for {pid=1584} {uid=[ID:1 hash:0x0]}
+2026-08-27 01:18:36.843 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0
+2026-08-27 01:18:36.843 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s
+2026-08-27 01:18:36.843 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Found main window: Window
+2026-08-27 01:18:36.843 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Preferring automation type 48 instead of legacy element type OTHER derived from class/trait: UILabel:UILabel 8590000128
+2026-08-27 01:18:36.843 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.843 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.844 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.844 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.844 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.844 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Preferring automation type 24 instead of legacy element type OTHER derived from class/trait: _UIFloatingBarContainerView:_UIFloatingBarContainerView 8589934592
+2026-08-27 01:18:36.844 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:36.844 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:36.844 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:36.844 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:36.844 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:36.844 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to
+2026-08-27 01:18:36.844 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers
+↪︎ Descendants matching type Link
+2026-08-27 01:18:36.844 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Link` to input {(
+ Application, pid: 1584
+)}, found {(
+)}
+2026-08-27 01:18:36.844 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {(
+)}
+2026-08-27 01:18:36.848 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Current tree:
+Application, 0x114bf8d40, pid: 1584
+ Window (Main), 0x114bf8ec0
+ Other, 0x127ca9840
+ Other, 0x10e5e1640
+ Other, 0x114bfcdc0
+ Other, 0x10aa9d0c0
+ Other, 0x114b3ae40
+ Other, 0x10e5346c0
+ Other, 0x12f5046c0
+ Other, 0x119cf3ac0
+ Other, 0x119cf3f40
+ NavigationBar, 0x10<…>
+2026-08-27 01:18:36.848 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Link found matching snapshots: {(
+)} (error: (null))
+2026-08-27 01:18:36.848 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Link with results: (error: (null))
+2026-08-27 01:18:36.851 Df ReactTestApp[1584:8738500] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type TextField
+2026-08-27 01:18:36.851 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Evaluating query:
+ ↪︎ Descendants matching type TextField
+2026-08-27 01:18:36.851 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Getting root element snapshot
+2026-08-27 01:18:36.851 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type TextField
+2026-08-27 01:18:36.851 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits.
+2026-08-27 01:18:36.851 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:36.851 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:36.851 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:36.851 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:36.851 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:36.851 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got main window {pid=1584} {uid=[ID:4 hash:0x10a048880]}
+2026-08-27 01:18:36.851 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeParent, XC_kAXXCAttributeIdentifier, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits
+2026-08-27 01:18:36.852 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with parameters {
+ attributes = (
+ 5003,
+ 5004,
+ 5002,
+ 5019,
+ 5058,
+ 2004
+ );
+ maxArrayCount = 2147483647;
+ maxChildren = 2147483647;
+ maxDepth = 2147483647;
+ snapshotKeyHonorModalViews = 0;
+ traverseFromParentsToChildren = 1;
+}
+2026-08-27 01:18:36.852 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004
+2026-08-27 01:18:36.878 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got snapshot for {pid=1584} {uid=[ID:1 hash:0x0]}
+2026-08-27 01:18:36.878 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0
+2026-08-27 01:18:36.878 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s
+2026-08-27 01:18:36.878 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Found main window: Window
+2026-08-27 01:18:36.878 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Preferring automation type 48 instead of legacy element type OTHER derived from class/trait: UILabel:UILabel 8590000128
+2026-08-27 01:18:36.878 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.879 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.879 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.879 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.879 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.879 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Preferring automation type 24 instead of legacy element type OTHER derived from class/trait: _UIFloatingBarContainerView:_UIFloatingBarContainerView 8589934592
+2026-08-27 01:18:36.879 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:36.879 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:36.879 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:36.879 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:36.879 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:36.879 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to
+2026-08-27 01:18:36.879 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers
+↪︎ Descendants matching type TextField
+2026-08-27 01:18:36.879 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type TextField` to input {(
+ Application, pid: 1584
+)}, found {(
+)}
+2026-08-27 01:18:36.880 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {(
+)}
+2026-08-27 01:18:36.883 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Current tree:
+Application, 0x119c2cd40, pid: 1584
+ Window (Main), 0x10aab9d40
+ Other, 0x119ca3840
+ Other, 0x114b973c0
+ Other, 0x127f721c0
+ Other, 0x127fc40c0
+ Other, 0x127c7a2c0
+ Other, 0x127fc43c0
+ Other, 0x127fbd040
+ Other, 0x119ca3cc0
+ Other, 0x119ca39c0
+ NavigationBar, 0x11<…>
+2026-08-27 01:18:36.883 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type TextField found matching snapshots: {(
+)} (error: (null))
+2026-08-27 01:18:36.883 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type TextField with results: (error: (null))
+2026-08-27 01:18:36.885 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type SecureTextField
+2026-08-27 01:18:36.885 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Evaluating query:
+ ↪︎ Descendants matching type SecureTextField
+2026-08-27 01:18:36.885 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Getting root element snapshot
+2026-08-27 01:18:36.886 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type SecureTextField
+2026-08-27 01:18:36.886 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits.
+2026-08-27 01:18:36.886 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:36.886 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:36.886 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:36.886 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:36.886 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:36.886 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got main window {pid=1584} {uid=[ID:4 hash:0x10a048880]}
+2026-08-27 01:18:36.886 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeParent, XC_kAXXCAttributeIdentifier, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits
+2026-08-27 01:18:36.886 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with parameters {
+ attributes = (
+ 5003,
+ 5004,
+ 5002,
+ 5019,
+ 5058,
+ 2004
+ );
+ maxArrayCount = 2147483647;
+ maxChildren = 2147483647;
+ maxDepth = 2147483647;
+ snapshotKeyHonorModalViews = 0;
+ traverseFromParentsToChildren = 1;
+}
+2026-08-27 01:18:36.886 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004
+2026-08-27 01:18:36.913 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got snapshot for {pid=1584} {uid=[ID:1 hash:0x0]}
+2026-08-27 01:18:36.913 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0
+2026-08-27 01:18:36.913 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s
+2026-08-27 01:18:36.913 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Found main window: Window
+2026-08-27 01:18:36.913 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Preferring automation type 48 instead of legacy element type OTHER derived from class/trait: UILabel:UILabel 8590000128
+2026-08-27 01:18:36.914 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.914 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.914 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.914 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.914 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.914 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Preferring automation type 24 instead of legacy element type OTHER derived from class/trait: _UIFloatingBarContainerView:_UIFloatingBarContainerView 8589934592
+2026-08-27 01:18:36.914 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:36.914 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:36.914 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:36.914 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:36.914 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to
+2026-08-27 01:18:36.914 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:36.914 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers
+↪︎ Descendants matching type SecureTextField
+2026-08-27 01:18:36.915 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type SecureTextField` to input {(
+ Application, pid: 1584
+)}, found {(
+)}
+2026-08-27 01:18:36.915 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {(
+)}
+2026-08-27 01:18:36.919 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Current tree:
+Application, 0x127f1ad40, pid: 1584
+ Window (Main), 0x127f1aec0
+ Other, 0x127f19fc0
+ Other, 0x127f1a8c0
+ Other, 0x119cba640
+ Other, 0x119cba4c0
+ Other, 0x119cd8340
+ Other, 0x119cba040
+ Other, 0x119cba340
+ Other, 0x119cbac40
+ Other, 0x119cba1c0
+ NavigationBar, 0x11<…>
+2026-08-27 01:18:36.919 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type SecureTextField found matching snapshots: {(
+)} (error: (null))
+2026-08-27 01:18:36.919 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type SecureTextField with results: (error: (null))
+2026-08-27 01:18:36.921 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type SearchField
+2026-08-27 01:18:36.921 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Evaluating query:
+ ↪︎ Descendants matching type SearchField
+2026-08-27 01:18:36.921 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Getting root element snapshot
+2026-08-27 01:18:36.921 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type SearchField
+2026-08-27 01:18:36.921 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits.
+2026-08-27 01:18:36.921 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:36.921 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:36.921 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:36.921 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:36.922 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:36.922 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got main window {pid=1584} {uid=[ID:4 hash:0x10a048880]}
+2026-08-27 01:18:36.922 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeParent, XC_kAXXCAttributeIdentifier, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits
+2026-08-27 01:18:36.922 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with parameters {
+ attributes = (
+ 5003,
+ 5004,
+ 5002,
+ 5019,
+ 5058,
+ 2004
+ );
+ maxArrayCount = 2147483647;
+ maxChildren = 2147483647;
+ maxDepth = 2147483647;
+ snapshotKeyHonorModalViews = 0;
+ traverseFromParentsToChildren = 1;
+}
+2026-08-27 01:18:36.922 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004
+2026-08-27 01:18:36.950 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got snapshot for {pid=1584} {uid=[ID:1 hash:0x0]}
+2026-08-27 01:18:36.950 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0
+2026-08-27 01:18:36.950 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s
+2026-08-27 01:18:36.951 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Found main window: Window
+2026-08-27 01:18:36.951 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Preferring automation type 48 instead of legacy element type OTHER derived from class/trait: UILabel:UILabel 8590000128
+2026-08-27 01:18:36.951 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.951 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.951 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.951 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.951 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.951 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Preferring automation type 24 instead of legacy element type OTHER derived from class/trait: _UIFloatingBarContainerView:_UIFloatingBarContainerView 8589934592
+2026-08-27 01:18:36.952 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:36.952 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:36.952 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:36.952 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:36.952 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:36.952 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to
+2026-08-27 01:18:36.952 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers
+↪︎ Descendants matching type SearchField
+2026-08-27 01:18:36.952 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type SearchField` to input {(
+ Application, pid: 1584
+)}, found {(
+)}
+2026-08-27 01:18:36.952 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {(
+)}
+2026-08-27 01:18:36.956 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Current tree:
+Application, 0x119ce7dc0, pid: 1584
+ Window (Main), 0x114bb62c0
+ Other, 0x119c700c0
+ Other, 0x10ec79fc0
+ Other, 0x119c70540
+ Other, 0x119c70b40
+ Other, 0x119c709c0
+ Other, 0x127f142c0
+ Other, 0x119c6f7c0
+ Other, 0x10aaaa140
+ Other, 0x114b097c0
+ NavigationBar, 0x12<…>
+2026-08-27 01:18:36.956 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type SearchField found matching snapshots: {(
+)} (error: (null))
+2026-08-27 01:18:36.956 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type SearchField with results: (error: (null))
+2026-08-27 01:18:36.958 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type TextView
+2026-08-27 01:18:36.958 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Evaluating query:
+ ↪︎ Descendants matching type TextView
+2026-08-27 01:18:36.958 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Getting root element snapshot
+2026-08-27 01:18:36.958 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type TextView
+2026-08-27 01:18:36.958 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits.
+2026-08-27 01:18:36.958 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:36.958 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:36.959 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:36.959 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:36.959 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:36.959 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got main window {pid=1584} {uid=[ID:4 hash:0x10a048880]}
+2026-08-27 01:18:36.959 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeParent, XC_kAXXCAttributeIdentifier, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits
+2026-08-27 01:18:36.959 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with parameters {
+ attributes = (
+ 5003,
+ 5004,
+ 5002,
+ 5019,
+ 5058,
+ 2004
+ );
+ maxArrayCount = 2147483647;
+ maxChildren = 2147483647;
+ maxDepth = 2147483647;
+ snapshotKeyHonorModalViews = 0;
+ traverseFromParentsToChildren = 1;
+}
+2026-08-27 01:18:36.959 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004
+2026-08-27 01:18:36.985 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got snapshot for {pid=1584} {uid=[ID:1 hash:0x0]}
+2026-08-27 01:18:36.985 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0
+2026-08-27 01:18:36.985 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s
+2026-08-27 01:18:36.985 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Found main window: Window
+2026-08-27 01:18:36.985 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Preferring automation type 48 instead of legacy element type OTHER derived from class/trait: UILabel:UILabel 8590000128
+2026-08-27 01:18:36.986 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.986 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.986 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.986 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.986 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:36.986 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Preferring automation type 24 instead of legacy element type OTHER derived from class/trait: _UIFloatingBarContainerView:_UIFloatingBarContainerView 8589934592
+2026-08-27 01:18:36.986 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:36.986 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:36.986 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:36.986 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:36.986 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:36.986 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to
+2026-08-27 01:18:36.986 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers
+↪︎ Descendants matching type TextView
+2026-08-27 01:18:36.987 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type TextView` to input {(
+ Application, pid: 1584
+)}, found {(
+)}
+2026-08-27 01:18:36.987 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {(
+)}
+2026-08-27 01:18:36.990 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Current tree:
+Application, 0x119c40b40, pid: 1584
+ Window (Main), 0x10e5a6fc0
+ Other, 0x119c0f940
+ Other, 0x114ba09c0
+ Other, 0x10aa49840
+ Other, 0x10aaf4b40
+ Other, 0x127c82240
+ Other, 0x114b2e840
+ Other, 0x10e56c4c0
+ Other, 0x10ecd06c0
+ Other, 0x127c7fcc0
+ NavigationBar, 0x11<…>
+2026-08-27 01:18:36.990 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type TextView found matching snapshots: {(
+)} (error: (null))
+2026-08-27 01:18:36.990 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type TextView with results: (error: (null))
+2026-08-27 01:18:36.992 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Switch
+2026-08-27 01:18:36.992 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Evaluating query:
+ ↪︎ Descendants matching type Switch
+2026-08-27 01:18:36.992 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Getting root element snapshot
+2026-08-27 01:18:36.992 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type Switch
+2026-08-27 01:18:36.992 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits.
+2026-08-27 01:18:36.992 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:36.993 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:36.993 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:36.993 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:36.993 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:36.993 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got main window {pid=1584} {uid=[ID:4 hash:0x10a048880]}
+2026-08-27 01:18:36.993 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeParent, XC_kAXXCAttributeIdentifier, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits
+2026-08-27 01:18:36.993 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with parameters {
+ attributes = (
+ 5003,
+ 5004,
+ 5002,
+ 5019,
+ 5058,
+ 2004
+ );
+ maxArrayCount = 2147483647;
+ maxChildren = 2147483647;
+ maxDepth = 2147483647;
+ snapshotKeyHonorModalViews = 0;
+ traverseFromParentsToChildren = 1;
+}
+2026-08-27 01:18:36.993 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004
+2026-08-27 01:18:37.019 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got snapshot for {pid=1584} {uid=[ID:1 hash:0x0]}
+2026-08-27 01:18:37.019 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0
+2026-08-27 01:18:37.019 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s
+2026-08-27 01:18:37.019 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Found main window: Window
+2026-08-27 01:18:37.019 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Preferring automation type 48 instead of legacy element type OTHER derived from class/trait: UILabel:UILabel 8590000128
+2026-08-27 01:18:37.020 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.020 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.020 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.020 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.020 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.020 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Preferring automation type 24 instead of legacy element type OTHER derived from class/trait: _UIFloatingBarContainerView:_UIFloatingBarContainerView 8589934592
+2026-08-27 01:18:37.020 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:37.020 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:37.020 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:37.020 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:37.020 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:37.020 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to
+2026-08-27 01:18:37.020 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers
+↪︎ Descendants matching type Switch
+2026-08-27 01:18:37.021 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Switch` to input {(
+ Application, pid: 1584
+)}, found {(
+)}
+2026-08-27 01:18:37.021 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {(
+)}
+2026-08-27 01:18:37.024 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Current tree:
+Application, 0x127fd63c0, pid: 1584
+ Window (Main), 0x127fd5040
+ Other, 0x10e5b3a40
+ Other, 0x127f454c0
+ Other, 0x119c460c0
+ Other, 0x127f199c0
+ Other, 0x127fec8c0
+ Other, 0x10e5475c0
+ Other, 0x10ec7ec40
+ Other, 0x10ec7f240
+ Other, 0x127f64e40
+ NavigationBar, 0x11<…>
+2026-08-27 01:18:37.024 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Switch found matching snapshots: {(
+)} (error: (null))
+2026-08-27 01:18:37.024 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Switch with results: (error: (null))
+2026-08-27 01:18:37.027 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Slider
+2026-08-27 01:18:37.027 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Evaluating query:
+ ↪︎ Descendants matching type Slider
+2026-08-27 01:18:37.027 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Getting root element snapshot
+2026-08-27 01:18:37.027 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type Slider
+2026-08-27 01:18:37.027 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits.
+2026-08-27 01:18:37.027 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:37.027 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:37.027 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:37.027 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:37.027 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:37.027 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got main window {pid=1584} {uid=[ID:4 hash:0x10a048880]}
+2026-08-27 01:18:37.027 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeParent, XC_kAXXCAttributeIdentifier, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits
+2026-08-27 01:18:37.027 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with parameters {
+ attributes = (
+ 5003,
+ 5004,
+ 5002,
+ 5019,
+ 5058,
+ 2004
+ );
+ maxArrayCount = 2147483647;
+ maxChildren = 2147483647;
+ maxDepth = 2147483647;
+ snapshotKeyHonorModalViews = 0;
+ traverseFromParentsToChildren = 1;
+}
+2026-08-27 01:18:37.027 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004
+2026-08-27 01:18:37.053 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got snapshot for {pid=1584} {uid=[ID:1 hash:0x0]}
+2026-08-27 01:18:37.053 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0
+2026-08-27 01:18:37.053 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s
+2026-08-27 01:18:37.053 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Found main window: Window
+2026-08-27 01:18:37.053 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Preferring automation type 48 instead of legacy element type OTHER derived from class/trait: UILabel:UILabel 8590000128
+2026-08-27 01:18:37.054 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.054 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.054 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.054 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.054 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.054 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Preferring automation type 24 instead of legacy element type OTHER derived from class/trait: _UIFloatingBarContainerView:_UIFloatingBarContainerView 8589934592
+2026-08-27 01:18:37.054 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:37.055 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:37.055 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:37.055 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:37.055 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to
+2026-08-27 01:18:37.055 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:37.055 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers
+↪︎ Descendants matching type Slider
+2026-08-27 01:18:37.055 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Slider` to input {(
+ Application, pid: 1584
+)}, found {(
+)}
+2026-08-27 01:18:37.055 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {(
+)}
+2026-08-27 01:18:37.058 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Current tree:
+Application, 0x127f5c440, pid: 1584
+ Window (Main), 0x10ecd78c0
+ Other, 0x119ca2c40
+ Other, 0x10aa7a8c0
+ Other, 0x119c9e740
+ Other, 0x119c622c0
+ Other, 0x127f079c0
+ Other, 0x127c77d40
+ Other, 0x127cbb240
+ Other, 0x119c610c0
+ Other, 0x127ff0f40
+ NavigationBar, 0x10<…>
+2026-08-27 01:18:37.059 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Slider found matching snapshots: {(
+)} (error: (null))
+2026-08-27 01:18:37.059 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Slider with results: (error: (null))
+2026-08-27 01:18:37.061 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type SegmentedControl
+2026-08-27 01:18:37.061 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Evaluating query:
+ ↪︎ Descendants matching type SegmentedControl
+2026-08-27 01:18:37.061 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Getting root element snapshot
+2026-08-27 01:18:37.061 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type SegmentedControl
+2026-08-27 01:18:37.061 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits.
+2026-08-27 01:18:37.061 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:37.061 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:37.061 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:37.061 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:37.061 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:37.061 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got main window {pid=1584} {uid=[ID:4 hash:0x10a048880]}
+2026-08-27 01:18:37.061 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeParent, XC_kAXXCAttributeIdentifier, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits
+2026-08-27 01:18:37.062 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with parameters {
+ attributes = (
+ 5003,
+ 5004,
+ 5002,
+ 5019,
+ 5058,
+ 2004
+ );
+ maxArrayCount = 2147483647;
+ maxChildren = 2147483647;
+ maxDepth = 2147483647;
+ snapshotKeyHonorModalViews = 0;
+ traverseFromParentsToChildren = 1;
+}
+2026-08-27 01:18:37.062 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004
+2026-08-27 01:18:37.088 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got snapshot for {pid=1584} {uid=[ID:1 hash:0x0]}
+2026-08-27 01:18:37.088 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0
+2026-08-27 01:18:37.089 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s
+2026-08-27 01:18:37.089 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Found main window: Window
+2026-08-27 01:18:37.089 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Preferring automation type 48 instead of legacy element type OTHER derived from class/trait: UILabel:UILabel 8590000128
+2026-08-27 01:18:37.090 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.090 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.090 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.090 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.090 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.090 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Preferring automation type 24 instead of legacy element type OTHER derived from class/trait: _UIFloatingBarContainerView:_UIFloatingBarContainerView 8589934592
+2026-08-27 01:18:37.091 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:37.091 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:37.091 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:37.091 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:37.091 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:37.091 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to
+2026-08-27 01:18:37.091 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers
+↪︎ Descendants matching type SegmentedControl
+2026-08-27 01:18:37.091 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type SegmentedControl` to input {(
+ Application, pid: 1584
+)}, found {(
+)}
+2026-08-27 01:18:37.091 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {(
+)}
+2026-08-27 01:18:37.094 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Current tree:
+Application, 0x10ecb9ec0, pid: 1584
+ Window (Main), 0x127f71bc0
+ Other, 0x127fd3e40
+ Other, 0x119c22b40
+ Other, 0x127fb1f40
+ Other, 0x12f50f4c0
+ Other, 0x127fb35c0
+ Other, 0x127fbc140
+ Other, 0x10ecbb240
+ Other, 0x10aab5540
+ Other, 0x127fe7f40
+ NavigationBar, 0x12<…>
+2026-08-27 01:18:37.094 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type SegmentedControl found matching snapshots: {(
+)} (error: (null))
+2026-08-27 01:18:37.095 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type SegmentedControl with results: (error: (null))
+2026-08-27 01:18:37.097 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Cell
+2026-08-27 01:18:37.097 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Evaluating query:
+ ↪︎ Descendants matching type Cell
+2026-08-27 01:18:37.097 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting root element snapshot
+2026-08-27 01:18:37.097 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type Cell
+2026-08-27 01:18:37.097 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits.
+2026-08-27 01:18:37.097 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:37.097 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:37.097 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:37.097 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:37.097 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:37.098 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got main window {pid=1584} {uid=[ID:4 hash:0x10a048880]}
+2026-08-27 01:18:37.098 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeParent, XC_kAXXCAttributeIdentifier, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits
+2026-08-27 01:18:37.098 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with parameters {
+ attributes = (
+ 5003,
+ 5004,
+ 5002,
+ 5019,
+ 5058,
+ 2004
+ );
+ maxArrayCount = 2147483647;
+ maxChildren = 2147483647;
+ maxDepth = 2147483647;
+ snapshotKeyHonorModalViews = 0;
+ traverseFromParentsToChildren = 1;
+}
+2026-08-27 01:18:37.098 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004
+2026-08-27 01:18:37.123 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got snapshot for {pid=1584} {uid=[ID:1 hash:0x0]}
+2026-08-27 01:18:37.123 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0
+2026-08-27 01:18:37.123 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s
+2026-08-27 01:18:37.123 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Found main window: Window
+2026-08-27 01:18:37.124 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Preferring automation type 48 instead of legacy element type OTHER derived from class/trait: UILabel:UILabel 8590000128
+2026-08-27 01:18:37.124 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.124 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.124 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.124 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.124 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.124 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Preferring automation type 24 instead of legacy element type OTHER derived from class/trait: _UIFloatingBarContainerView:_UIFloatingBarContainerView 8589934592
+2026-08-27 01:18:37.125 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:37.125 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:37.125 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:37.125 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:37.125 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:37.125 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to
+2026-08-27 01:18:37.125 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers
+↪︎ Descendants matching type Cell
+2026-08-27 01:18:37.125 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Cell` to input {(
+ Application, pid: 1584
+)}, found {(
+)}
+2026-08-27 01:18:37.125 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {(
+)}
+2026-08-27 01:18:37.129 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Current tree:
+Application, 0x10e5a12c0, pid: 1584
+ Window (Main), 0x127f6bec0
+ Other, 0x119c77a40
+ Other, 0x119c77740
+ Other, 0x119c778c0
+ Other, 0x119c9c340
+ Other, 0x10ecf64c0
+ Other, 0x119c781c0
+ Other, 0x10e5a15c0
+ Other, 0x127f49240
+ Other, 0x127f490c0
+ NavigationBar, 0x12<…>
+2026-08-27 01:18:37.129 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Cell found matching snapshots: {(
+)} (error: (null))
+2026-08-27 01:18:37.129 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Cell with results: (error: (null))
+2026-08-27 01:18:37.131 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type CollectionView
+2026-08-27 01:18:37.131 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Evaluating query:
+ ↪︎ Descendants matching type CollectionView
+2026-08-27 01:18:37.132 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting root element snapshot
+2026-08-27 01:18:37.132 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type CollectionView
+2026-08-27 01:18:37.132 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits.
+2026-08-27 01:18:37.132 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:37.132 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:37.132 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:37.132 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:37.132 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:37.132 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got main window {pid=1584} {uid=[ID:4 hash:0x10a048880]}
+2026-08-27 01:18:37.132 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeParent, XC_kAXXCAttributeIdentifier, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits
+2026-08-27 01:18:37.132 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with parameters {
+ attributes = (
+ 5003,
+ 5004,
+ 5002,
+ 5019,
+ 5058,
+ 2004
+ );
+ maxArrayCount = 2147483647;
+ maxChildren = 2147483647;
+ maxDepth = 2147483647;
+ snapshotKeyHonorModalViews = 0;
+ traverseFromParentsToChildren = 1;
+}
+2026-08-27 01:18:37.132 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004
+2026-08-27 01:18:37.158 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got snapshot for {pid=1584} {uid=[ID:1 hash:0x0]}
+2026-08-27 01:18:37.158 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0
+2026-08-27 01:18:37.158 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s
+2026-08-27 01:18:37.158 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Found main window: Window
+2026-08-27 01:18:37.158 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Preferring automation type 48 instead of legacy element type OTHER derived from class/trait: UILabel:UILabel 8590000128
+2026-08-27 01:18:37.159 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.159 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.159 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.159 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.159 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.159 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Preferring automation type 24 instead of legacy element type OTHER derived from class/trait: _UIFloatingBarContainerView:_UIFloatingBarContainerView 8589934592
+2026-08-27 01:18:37.159 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:37.159 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:37.159 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:37.159 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:37.159 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:37.159 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to
+2026-08-27 01:18:37.159 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers
+↪︎ Descendants matching type CollectionView
+2026-08-27 01:18:37.160 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type CollectionView` to input {(
+ Application, pid: 1584
+)}, found {(
+)}
+2026-08-27 01:18:37.160 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {(
+)}
+2026-08-27 01:18:37.163 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Current tree:
+Application, 0x127fed040, pid: 1584
+ Window (Main), 0x127fbe840
+ Other, 0x119c78c40
+ Other, 0x127fe6740
+ Other, 0x127fe9440
+ Other, 0x127fc9ac0
+ Other, 0x127fe62c0
+ Other, 0x127fe8e40
+ Other, 0x127fe9bc0
+ Other, 0x127fca0c0
+ Other, 0x127c6b5c0
+ NavigationBar, 0x12<…>
+2026-08-27 01:18:37.163 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type CollectionView found matching snapshots: {(
+)} (error: (null))
+2026-08-27 01:18:37.163 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type CollectionView with results: (error: (null))
+2026-08-27 01:18:37.165 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Table
+2026-08-27 01:18:37.165 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Evaluating query:
+ ↪︎ Descendants matching type Table
+2026-08-27 01:18:37.165 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting root element snapshot
+2026-08-27 01:18:37.165 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type Table
+2026-08-27 01:18:37.165 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits.
+2026-08-27 01:18:37.165 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:37.166 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:37.166 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:37.166 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:37.166 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:37.166 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got main window {pid=1584} {uid=[ID:4 hash:0x10a048880]}
+2026-08-27 01:18:37.166 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeParent, XC_kAXXCAttributeIdentifier, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits
+2026-08-27 01:18:37.166 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with parameters {
+ attributes = (
+ 5003,
+ 5004,
+ 5002,
+ 5019,
+ 5058,
+ 2004
+ );
+ maxArrayCount = 2147483647;
+ maxChildren = 2147483647;
+ maxDepth = 2147483647;
+ snapshotKeyHonorModalViews = 0;
+ traverseFromParentsToChildren = 1;
+}
+2026-08-27 01:18:37.166 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004
+2026-08-27 01:18:37.192 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got snapshot for {pid=1584} {uid=[ID:1 hash:0x0]}
+2026-08-27 01:18:37.192 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0
+2026-08-27 01:18:37.192 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s
+2026-08-27 01:18:37.192 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Found main window: Window
+2026-08-27 01:18:37.192 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Preferring automation type 48 instead of legacy element type OTHER derived from class/trait: UILabel:UILabel 8590000128
+2026-08-27 01:18:37.193 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.193 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.193 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.193 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.193 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.193 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Preferring automation type 24 instead of legacy element type OTHER derived from class/trait: _UIFloatingBarContainerView:_UIFloatingBarContainerView 8589934592
+2026-08-27 01:18:37.193 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:37.193 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:37.193 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:37.193 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:37.193 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:37.193 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to
+2026-08-27 01:18:37.193 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers
+↪︎ Descendants matching type Table
+2026-08-27 01:18:37.194 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Table` to input {(
+ Application, pid: 1584
+)}, found {(
+)}
+2026-08-27 01:18:37.194 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {(
+)}
+2026-08-27 01:18:37.197 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Current tree:
+Application, 0x127f8c8c0, pid: 1584
+ Window (Main), 0x127f6ebc0
+ Other, 0x119c61fc0
+ Other, 0x119c337c0
+ Other, 0x127cab7c0
+ Other, 0x119ceddc0
+ Other, 0x127ff2ec0
+ Other, 0x127fe3bc0
+ Other, 0x127fe3d40
+ Other, 0x127fc5bc0
+ Other, 0x119c6dcc0
+ NavigationBar, 0x12<…>
+2026-08-27 01:18:37.197 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Table found matching snapshots: {(
+)} (error: (null))
+2026-08-27 01:18:37.197 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Table with results: (error: (null))
+2026-08-27 01:18:37.200 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type ScrollView
+2026-08-27 01:18:37.200 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Evaluating query:
+ ↪︎ Descendants matching type ScrollView
+2026-08-27 01:18:37.200 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting root element snapshot
+2026-08-27 01:18:37.200 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type ScrollView
+2026-08-27 01:18:37.200 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits.
+2026-08-27 01:18:37.200 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:37.200 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:37.200 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:37.200 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:37.200 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:37.200 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got main window {pid=1584} {uid=[ID:4 hash:0x10a048880]}
+2026-08-27 01:18:37.200 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeParent, XC_kAXXCAttributeIdentifier, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits
+2026-08-27 01:18:37.200 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with parameters {
+ attributes = (
+ 5003,
+ 5004,
+ 5002,
+ 5019,
+ 5058,
+ 2004
+ );
+ maxArrayCount = 2147483647;
+ maxChildren = 2147483647;
+ maxDepth = 2147483647;
+ snapshotKeyHonorModalViews = 0;
+ traverseFromParentsToChildren = 1;
+}
+2026-08-27 01:18:37.200 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004
+2026-08-27 01:18:37.225 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got snapshot for {pid=1584} {uid=[ID:1 hash:0x0]}
+2026-08-27 01:18:37.226 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0
+2026-08-27 01:18:37.226 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s
+2026-08-27 01:18:37.226 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Found main window: Window
+2026-08-27 01:18:37.226 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Preferring automation type 48 instead of legacy element type OTHER derived from class/trait: UILabel:UILabel 8590000128
+2026-08-27 01:18:37.226 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.226 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.226 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.226 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.226 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.227 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Preferring automation type 24 instead of legacy element type OTHER derived from class/trait: _UIFloatingBarContainerView:_UIFloatingBarContainerView 8589934592
+2026-08-27 01:18:37.227 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:37.227 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:37.228 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:37.228 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:37.228 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:37.228 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to
+2026-08-27 01:18:37.228 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers
+↪︎ Descendants matching type ScrollView
+2026-08-27 01:18:37.228 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type ScrollView` to input {(
+ Application, pid: 1584
+)}, found {(
+ ScrollView
+)}
+2026-08-27 01:18:37.228 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] setting out related elements {(
+)}
+2026-08-27 01:18:37.231 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Current tree:
+Application, 0x119c877c0, pid: 1584
+ Window (Main), 0x127f4f3c0
+ Other, 0x10eceddc0
+ Other, 0x119c4dbc0
+ Other, 0x127fff040
+ Other, 0x127fff1c0
+ Other, 0x127fff340
+ Other, 0x127c15dc0
+ Other, 0x127fc7fc0
+ Other, 0x127fc8140
+ Other, 0x12f508d40
+ NavigationBar, 0x12<…>
+2026-08-27 01:18:37.231 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type ScrollView found matching snapshots: {(
+ ScrollView
+)} (error: (null))
+2026-08-27 01:18:37.231 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type ScrollView with results: (error: (null))
+2026-08-27 01:18:37.235 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Picker
+2026-08-27 01:18:37.235 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Evaluating query:
+ ↪︎ Descendants matching type Picker
+2026-08-27 01:18:37.235 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting root element snapshot
+2026-08-27 01:18:37.235 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type Picker
+2026-08-27 01:18:37.235 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits.
+2026-08-27 01:18:37.236 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:37.236 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:37.236 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:37.236 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:37.236 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:37.236 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got main window {pid=1584} {uid=[ID:4 hash:0x10a048880]}
+2026-08-27 01:18:37.236 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeParent, XC_kAXXCAttributeIdentifier, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits
+2026-08-27 01:18:37.236 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with parameters {
+ attributes = (
+ 5003,
+ 5004,
+ 5002,
+ 5019,
+ 5058,
+ 2004
+ );
+ maxArrayCount = 2147483647;
+ maxChildren = 2147483647;
+ maxDepth = 2147483647;
+ snapshotKeyHonorModalViews = 0;
+ traverseFromParentsToChildren = 1;
+}
+2026-08-27 01:18:37.236 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004
+2026-08-27 01:18:37.261 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got snapshot for {pid=1584} {uid=[ID:1 hash:0x0]}
+2026-08-27 01:18:37.262 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0
+2026-08-27 01:18:37.262 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s
+2026-08-27 01:18:37.262 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Found main window: Window
+2026-08-27 01:18:37.262 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Preferring automation type 48 instead of legacy element type OTHER derived from class/trait: UILabel:UILabel 8590000128
+2026-08-27 01:18:37.262 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.262 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.263 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.263 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.263 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.263 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Preferring automation type 24 instead of legacy element type OTHER derived from class/trait: _UIFloatingBarContainerView:_UIFloatingBarContainerView 8589934592
+2026-08-27 01:18:37.263 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:37.263 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:37.263 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:37.263 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:37.263 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:37.263 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to
+2026-08-27 01:18:37.263 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers
+↪︎ Descendants matching type Picker
+2026-08-27 01:18:37.263 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Picker` to input {(
+ Application, pid: 1584
+)}, found {(
+)}
+2026-08-27 01:18:37.264 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {(
+)}
+2026-08-27 01:18:37.267 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Current tree:
+Application, 0x119cbc740, pid: 1584
+ Window (Main), 0x119cbc440
+ Other, 0x119cb6bc0
+ Other, 0x10e500dc0
+ Other, 0x119c24f40
+ Other, 0x127f820c0
+ Other, 0x119cbb240
+ Other, 0x119cbb0c0
+ Other, 0x127fe2b40
+ Other, 0x127c80d40
+ Other, 0x127f69040
+ NavigationBar, 0x11<…>
+2026-08-27 01:18:37.267 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Picker found matching snapshots: {(
+)} (error: (null))
+2026-08-27 01:18:37.267 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Picker with results: (error: (null))
+2026-08-27 01:18:37.269 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Stepper
+2026-08-27 01:18:37.269 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Evaluating query:
+ ↪︎ Descendants matching type Stepper
+2026-08-27 01:18:37.269 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting root element snapshot
+2026-08-27 01:18:37.269 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type Stepper
+2026-08-27 01:18:37.269 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits.
+2026-08-27 01:18:37.269 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:37.269 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:37.269 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:37.269 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:37.269 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:37.270 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got main window {pid=1584} {uid=[ID:4 hash:0x10a048880]}
+2026-08-27 01:18:37.270 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeParent, XC_kAXXCAttributeIdentifier, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits
+2026-08-27 01:18:37.270 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with parameters {
+ attributes = (
+ 5003,
+ 5004,
+ 5002,
+ 5019,
+ 5058,
+ 2004
+ );
+ maxArrayCount = 2147483647;
+ maxChildren = 2147483647;
+ maxDepth = 2147483647;
+ snapshotKeyHonorModalViews = 0;
+ traverseFromParentsToChildren = 1;
+}
+2026-08-27 01:18:37.270 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004
+2026-08-27 01:18:37.295 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got snapshot for {pid=1584} {uid=[ID:1 hash:0x0]}
+2026-08-27 01:18:37.295 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0
+2026-08-27 01:18:37.295 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s
+2026-08-27 01:18:37.296 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Found main window: Window
+2026-08-27 01:18:37.296 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Preferring automation type 48 instead of legacy element type OTHER derived from class/trait: UILabel:UILabel 8590000128
+2026-08-27 01:18:37.296 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.296 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.296 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.296 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.296 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.296 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Preferring automation type 24 instead of legacy element type OTHER derived from class/trait: _UIFloatingBarContainerView:_UIFloatingBarContainerView 8589934592
+2026-08-27 01:18:37.297 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:37.297 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:37.297 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:37.297 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:37.297 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:37.297 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to
+2026-08-27 01:18:37.297 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers
+↪︎ Descendants matching type Stepper
+2026-08-27 01:18:37.297 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Stepper` to input {(
+ Application, pid: 1584
+)}, found {(
+)}
+2026-08-27 01:18:37.297 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {(
+)}
+2026-08-27 01:18:37.301 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Current tree:
+Application, 0x127ff1cc0, pid: 1584
+ Window (Main), 0x127ff13c0
+ Other, 0x127ff5d40
+ Other, 0x127fdbc40
+ Other, 0x10aa40fc0
+ Other, 0x127ff9c40
+ Other, 0x114b5d1c0
+ Other, 0x127c96ac0
+ Other, 0x10ec7e640
+ Other, 0x127fc0340
+ Other, 0x127cc0640
+ NavigationBar, 0x11<…>
+2026-08-27 01:18:37.301 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Stepper found matching snapshots: {(
+)} (error: (null))
+2026-08-27 01:18:37.301 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Stepper with results: (error: (null))
+2026-08-27 01:18:37.303 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type TabBar
+2026-08-27 01:18:37.303 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Evaluating query:
+ ↪︎ Descendants matching type TabBar
+2026-08-27 01:18:37.303 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting root element snapshot
+2026-08-27 01:18:37.303 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type TabBar
+2026-08-27 01:18:37.303 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits.
+2026-08-27 01:18:37.303 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:37.303 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:37.303 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:37.303 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:37.303 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:37.304 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got main window {pid=1584} {uid=[ID:4 hash:0x10a048880]}
+2026-08-27 01:18:37.304 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeParent, XC_kAXXCAttributeIdentifier, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits
+2026-08-27 01:18:37.304 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Capturing hierarchy with parameters {
+ attributes = (
+ 5003,
+ 5004,
+ 5002,
+ 5019,
+ 5058,
+ 2004
+ );
+ maxArrayCount = 2147483647;
+ maxChildren = 2147483647;
+ maxDepth = 2147483647;
+ snapshotKeyHonorModalViews = 0;
+ traverseFromParentsToChildren = 1;
+}
+2026-08-27 01:18:37.304 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004
+2026-08-27 01:18:37.329 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got snapshot for {pid=1584} {uid=[ID:1 hash:0x0]}
+2026-08-27 01:18:37.330 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0
+2026-08-27 01:18:37.330 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s
+2026-08-27 01:18:37.330 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Found main window: Window
+2026-08-27 01:18:37.330 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Preferring automation type 48 instead of legacy element type OTHER derived from class/trait: UILabel:UILabel 8590000128
+2026-08-27 01:18:37.330 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.330 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.330 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.331 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.331 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Other is not actually a child of Other, including at this point anyway (rdar://problem/20738636)
+2026-08-27 01:18:37.331 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Preferring automation type 24 instead of legacy element type OTHER derived from class/trait: _UIFloatingBarContainerView:_UIFloatingBarContainerView 8589934592
+2026-08-27 01:18:37.331 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform
+2026-08-27 01:18:37.331 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout
+2026-08-27 01:18:37.331 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform
+2026-08-27 01:18:37.331 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag)
+2026-08-27 01:18:37.331 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete
+2026-08-27 01:18:37.331 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to
+2026-08-27 01:18:37.331 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers
+↪︎ Descendants matching type TabBar
+2026-08-27 01:18:37.331 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type TabBar` to input {(
+ Application, pid: 1584
+)}, found {(
+ TabBar
+)}
+2026-08-27 01:18:37.331 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] setting out related elements {(
+)}
+2026-08-27 01:18:37.335 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Current tree:
+Application, 0x127ffb140, pid: 1584
+ Window (Main), 0x12f500640
+ Other, 0x127fc5d40
+ Other, 0x119c41140
+ Other, 0x127ffa540
+ Other, 0x10aa9ea40
+ Other, 0x127fa0cc0
+ Other, 0x10aaaf9c0
+ Other, 0x119c94e40
+ Other, 0x119cbadc0
+ Other, 0x119cb9ec0
+ NavigationBar, 0x11<…>
+2026-08-27 01:18:37.335 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type TabBar found matching snapshots: {(
+ TabBar
+)} (error: (null))
+2026-08-27 01:18:37.335 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type TabBar with results: