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: (error: (null)) +2026-08-27 01:18:37.338 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type MenuItem +2026-08-27 01:18:37.338 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type MenuItem +2026-08-27 01:18:37.338 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:18:37.338 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type MenuItem +2026-08-27 01:18:37.338 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.339 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.339 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.339 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.339 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.339 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.339 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.339 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.339 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.339 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:18:37.364 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.365 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:18:37.365 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:18:37.365 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:18:37.365 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.365 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.365 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.365 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.365 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.365 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.366 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.366 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.366 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.366 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.366 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.366 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.366 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:18:37.366 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers +↪︎ Descendants matching type MenuItem +2026-08-27 01:18:37.366 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type MenuItem` to input {( + Application, pid: 1584 +)}, found {( +)} +2026-08-27 01:18:37.366 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {( +)} +2026-08-27 01:18:37.370 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Current tree: +Application, 0x127fe56c0, pid: 1584 + Window (Main), 0x127fff7c0 + Other, 0x12f509c40 + Other, 0x10aa475c0 + Other, 0x127fc64c0 + Other, 0x127ffacc0 + Other, 0x114b3d540 + Other, 0x10e5aa140 + Other, 0x127cc0dc0 + Other, 0x127fd5640 + Other, 0x127f50a40 + NavigationBar, 0x12<…> +2026-08-27 01:18:37.370 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type MenuItem found matching snapshots: {( +)} (error: (null)) +2026-08-27 01:18:37.370 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type MenuItem with results: (error: (null)) +2026-08-27 01:18:37.372 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type StaticText +2026-08-27 01:18:37.372 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type StaticText +2026-08-27 01:18:37.372 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:18:37.372 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type StaticText +2026-08-27 01:18:37.372 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.372 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.372 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.372 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.372 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.372 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.373 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.373 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.373 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.373 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:18:37.398 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.399 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:18:37.399 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:18:37.399 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:18:37.399 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.399 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.399 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.399 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.399 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.400 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.400 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.400 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.400 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.400 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.400 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.400 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.400 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:18:37.400 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers +↪︎ Descendants matching type StaticText +2026-08-27 01:18:37.401 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type StaticText` to input {( + Application, pid: 1584 +)}, found {( + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText +)} +2026-08-27 01:18:37.401 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:18:37.404 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Current tree: +Application, 0x119c47740, pid: 1584 + Window (Main), 0x127fbd940 + Other, 0x119cf3f40 + Other, 0x127f70e40 + Other, 0x119cf3ac0 + Other, 0x127ff52c0 + Other, 0x127cfc940 + Other, 0x127fbd1c0 + Other, 0x127fa0840 + Other, 0x127ff5440 + Other, 0x114bfa0c0 + NavigationBar, 0x12<…> +2026-08-27 01:18:37.404 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type StaticText found matching snapshots: {( + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText +)} (error: (null)) +2026-08-27 01:18:37.411 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type StaticText with results: (error: (null)) +2026-08-27 01:18:37.416 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Image +2026-08-27 01:18:37.416 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Image +2026-08-27 01:18:37.416 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:18:37.416 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type Image +2026-08-27 01:18:37.416 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.416 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.416 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.416 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.416 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.416 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.416 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.416 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.417 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.417 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:18:37.442 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.442 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:18:37.442 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:18:37.442 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:18:37.443 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.443 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.443 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.443 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.443 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.443 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.443 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.444 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.444 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.444 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.444 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.444 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:18:37.444 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.444 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers +↪︎ Descendants matching type Image +2026-08-27 01:18:37.444 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Image` to input {( + Application, pid: 1584 +)}, found {( + Image, + Image +)} +2026-08-27 01:18:37.444 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:18:37.447 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Current tree: +Application, 0x12f501540, pid: 1584 + Window (Main), 0x119cc34c0 + Other, 0x12f502140 + Other, 0x12f5022c0 + Other, 0x10e5538c0 + Other, 0x12f5025c0 + Other, 0x12f5013c0 + Other, 0x12f501b40 + Other, 0x12f5019c0 + Other, 0x10ec85b40 + Other, 0x12f501cc0 + NavigationBar, 0x12<…> +2026-08-27 01:18:37.447 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Image found matching snapshots: {( + Image, + Image +)} (error: (null)) +2026-08-27 01:18:37.448 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Image with results: (error: (null)) +2026-08-27 01:18:37.451 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.451 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.451 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:18:37.451 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.451 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.451 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.451 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.451 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.451 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.451 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.451 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.451 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.451 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.451 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:18:37.477 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.477 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:18:37.477 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:18:37.477 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:18:37.477 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.477 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.478 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.478 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.478 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.478 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.478 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.478 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.478 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.478 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.478 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.478 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.478 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:18:37.478 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers +↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.479 Df ReactTestApp[1584:8738505] [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:37.479 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] applied transformer `Element at index 0` to input {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)}, found {( + Button, identifier: 'BackButton' +)} +2026-08-27 01:18:37.479 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:18:37.482 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Current tree: +Application, 0x119c9b5c0, pid: 1584 + Window (Main), 0x114bfba40 + Other, 0x119c75dc0 + Other, 0x119c73b40 + Other, 0x119cbe6c0 + Other, 0x119c8ddc0 + Other, 0x127fbf440 + Other, 0x119c5b540 + Other, 0x10aa418c0 + Other, 0x127f14140 + Other, 0x119c75040 + NavigationBar, 0x12<…> +2026-08-27 01:18:37.482 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 found matching snapshots: {( + Button, identifier: 'BackButton' +)} (error: (null)) +2026-08-27 01:18:37.483 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 with results: (error: (null)) +2026-08-27 01:18:37.485 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.485 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.485 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:18:37.485 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.485 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.485 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.485 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.485 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.485 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.485 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.485 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.485 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.485 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.485 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:18:37.511 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.511 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:18:37.511 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:18:37.511 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:18:37.511 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.512 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.512 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.512 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.512 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.512 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.512 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.512 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.512 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.512 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.512 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.512 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.512 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:18:37.512 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers +↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.513 Df ReactTestApp[1584:8738505] [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:37.513 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] applied transformer `Element at index 0` to input {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)}, found {( + Button, identifier: 'BackButton' +)} +2026-08-27 01:18:37.513 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:18:37.516 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Current tree: +Application, 0x10ecbb540, pid: 1584 + Window (Main), 0x127c79540 + Other, 0x127f505c0 + Other, 0x119ca4140 + Other, 0x127c78dc0 + Other, 0x127fc76c0 + Other, 0x10ecb9d40 + Other, 0x10ecba4c0 + Other, 0x127c75340 + Other, 0x114b84ac0 + Other, 0x127c9ea40 + NavigationBar, 0x10<…> +2026-08-27 01:18:37.516 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 found matching snapshots: {( + Button, identifier: 'BackButton' +)} (error: (null)) +2026-08-27 01:18:37.516 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 with results: (error: (null)) +2026-08-27 01:18:37.518 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributeFrame", + "XC_kAXXCAttributeWindowDisplayId", + "XC_kAXXCAttributeWindowContextId" +) +2026-08-27 01:18:37.518 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.518 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.518 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.518 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.518 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.518 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeFrame, XC_kAXXCAttributeWindowDisplayId, XC_kAXXCAttributeWindowContextId for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.518 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.518 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeFrame" = { + Height = 44; + Width = 44; + X = 16; + Y = 62; + }; + "XC_kAXXCAttributeWindowContextId" = 1508916392; + "XC_kAXXCAttributeWindowDisplayId" = 1; +} +2026-08-27 01:18:37.521 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributeLabel" +) +2026-08-27 01:18:37.521 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.521 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.521 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.521 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.521 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeLabel for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.521 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.521 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.522 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Checking 'BottomTabs Example' for privileged AX value slot attributes +2026-08-27 01:18:37.522 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeLabel" = "BottomTabs Example"; +} +2026-08-27 01:18:37.522 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributeValue" +) +2026-08-27 01:18:37.523 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.523 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.523 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.523 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.523 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.523 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeValue for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.523 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.523 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:18:37.524 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributePlaceholderValue" +) +2026-08-27 01:18:37.524 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.524 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.524 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.524 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.524 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.524 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributePlaceholderValue for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.524 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.524 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:18:37.525 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.525 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.525 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:18:37.525 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.525 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.525 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.525 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.525 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.525 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.525 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.526 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.526 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.526 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.526 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:18:37.551 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.551 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:18:37.551 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:18:37.551 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:18:37.552 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.552 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.552 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.552 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.552 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.552 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.552 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.553 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.553 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.553 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.553 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.553 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:18:37.553 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.553 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers +↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.553 Df ReactTestApp[1584:8738505] [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:37.553 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] applied transformer `Element at index 0` to input {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)}, found {( + Button, identifier: 'BackButton' +)} +2026-08-27 01:18:37.553 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:18:37.557 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Current tree: +Application, 0x12f502ec0, pid: 1584 + Window (Main), 0x12f502440 + Other, 0x12f503340 + Other, 0x12f503040 + Other, 0x12f5031c0 + Other, 0x12f502bc0 + Other, 0x127c682c0 + Other, 0x119cf3640 + Other, 0x127fc6940 + Other, 0x127c676c0 + Other, 0x10e5910c0 + NavigationBar, 0x10<…> +2026-08-27 01:18:37.557 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 found matching snapshots: {( + Button, identifier: 'BackButton' +)} (error: (null)) +2026-08-27 01:18:37.557 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 with results: (error: (null)) +2026-08-27 01:18:37.559 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributeLabel" +) +2026-08-27 01:18:37.559 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.559 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.559 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.559 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.559 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.559 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeLabel for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.559 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.559 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Checking 'BottomTabs Example' for privileged AX value slot attributes +2026-08-27 01:18:37.559 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeLabel" = "BottomTabs Example"; +} +2026-08-27 01:18:37.560 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributeValue" +) +2026-08-27 01:18:37.560 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.560 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.560 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.560 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.560 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.560 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeValue for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.560 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.560 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:18:37.561 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributePlaceholderValue" +) +2026-08-27 01:18:37.561 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.561 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.561 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.561 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.561 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.561 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributePlaceholderValue for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.561 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.561 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:18:37.563 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.563 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.563 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:18:37.563 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.563 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.563 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.563 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.563 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.563 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.563 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.563 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.563 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.564 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.564 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:18:37.589 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.589 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:18:37.589 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:18:37.589 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:18:37.589 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.590 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.590 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.590 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.590 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.590 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.590 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.590 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.590 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.590 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.590 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.590 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:18:37.591 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.591 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers +↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.591 Df ReactTestApp[1584:8737e18] [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:37.591 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] [Match All] applied transformer `Element at index 0` to input {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)}, found {( + Button, identifier: 'BackButton' +)} +2026-08-27 01:18:37.591 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:18:37.595 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Current tree: +Application, 0x119cb20c0, pid: 1584 + Window (Main), 0x12f5001c0 + Other, 0x127ff4fc0 + Other, 0x127c66c40 + Other, 0x127fb5840 + Other, 0x119cb23c0 + Other, 0x119cb2cc0 + Other, 0x119cb1dc0 + Other, 0x119c75340 + Other, 0x119cc46c0 + Other, 0x127ca0fc0 + NavigationBar, 0x11<…> +2026-08-27 01:18:37.595 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 found matching snapshots: {( + Button, identifier: 'BackButton' +)} (error: (null)) +2026-08-27 01:18:37.595 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 with results: (error: (null)) +2026-08-27 01:18:37.597 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributeLabel" +) +2026-08-27 01:18:37.597 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.597 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.597 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.597 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.597 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.597 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeLabel for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.597 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.597 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Checking 'BottomTabs Example' for privileged AX value slot attributes +2026-08-27 01:18:37.597 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeLabel" = "BottomTabs Example"; +} +2026-08-27 01:18:37.598 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributeValue" +) +2026-08-27 01:18:37.598 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.598 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.598 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.598 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.598 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.598 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeValue for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.598 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.598 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:18:37.599 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributePlaceholderValue" +) +2026-08-27 01:18:37.599 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.599 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.599 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.599 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.599 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.599 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributePlaceholderValue for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.599 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.599 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:18:37.600 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.600 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.600 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:18:37.600 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.600 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.600 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.600 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.600 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.600 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.600 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.601 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.601 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.601 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.601 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:18:37.628 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.628 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:18:37.628 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:18:37.628 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:18:37.628 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.628 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.629 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.629 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.629 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.629 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.629 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.629 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.629 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.629 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.629 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.629 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.629 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:18:37.629 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers +↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.630 Df ReactTestApp[1584:8738505] [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:37.630 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] applied transformer `Element at index 0` to input {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)}, found {( + Button, identifier: 'BackButton' +)} +2026-08-27 01:18:37.630 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:18:37.633 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Current tree: +Application, 0x127ff9c40, pid: 1584 + Window (Main), 0x10aa40fc0 + Other, 0x10ec7e640 + Other, 0x127ff6f40 + Other, 0x127ffb2c0 + Other, 0x12f5124c0 + Other, 0x127ff3dc0 + Other, 0x12f5127c0 + Other, 0x127ffa6c0 + Other, 0x10ec80bc0 + Other, 0x10aa1bf40 + NavigationBar, 0x12<…> +2026-08-27 01:18:37.633 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 found matching snapshots: {( + Button, identifier: 'BackButton' +)} (error: (null)) +2026-08-27 01:18:37.633 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 with results: (error: (null)) +2026-08-27 01:18:37.635 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributeValue" +) +2026-08-27 01:18:37.635 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.635 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.635 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.635 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.635 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.635 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeValue for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.635 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.635 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:18:37.636 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributeLabel" +) +2026-08-27 01:18:37.636 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.636 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.636 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.636 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.636 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.636 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeLabel for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.636 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.636 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Checking 'BottomTabs Example' for privileged AX value slot attributes +2026-08-27 01:18:37.636 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeLabel" = "BottomTabs Example"; +} +2026-08-27 01:18:37.637 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributePlaceholderValue" +) +2026-08-27 01:18:37.637 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.637 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.637 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.637 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.637 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributePlaceholderValue for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.637 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.637 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.637 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:18:37.638 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.638 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.638 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:18:37.638 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.638 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.638 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.638 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.638 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.638 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.638 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.639 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.639 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.639 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.639 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:18:37.665 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.665 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:18:37.665 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:18:37.665 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:18:37.665 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.666 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.666 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.666 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.666 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.666 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.666 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.666 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.667 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.667 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.667 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.667 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.667 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:18:37.667 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers +↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.667 Df ReactTestApp[1584:8738505] [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:37.667 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] applied transformer `Element at index 0` to input {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)}, found {( + Button, identifier: 'BackButton' +)} +2026-08-27 01:18:37.667 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:18:37.671 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Current tree: +Application, 0x127fdbac0, pid: 1584 + Window (Main), 0x127fd93c0 + Other, 0x127fdaec0 + Other, 0x119cb2fc0 + Other, 0x119cb1340 + Other, 0x114b364c0 + Other, 0x127c85840 + Other, 0x119cec5c0 + Other, 0x114bbcec0 + Other, 0x127c74bc0 + Other, 0x127fdbdc0 + NavigationBar, 0x12<…> +2026-08-27 01:18:37.671 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 found matching snapshots: {( + Button, identifier: 'BackButton' +)} (error: (null)) +2026-08-27 01:18:37.671 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 with results: (error: (null)) +2026-08-27 01:18:37.672 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributeLabel" +) +2026-08-27 01:18:37.672 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.672 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.672 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.672 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.672 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.672 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeLabel for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.673 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.673 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Checking 'BottomTabs Example' for privileged AX value slot attributes +2026-08-27 01:18:37.673 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeLabel" = "BottomTabs Example"; +} +2026-08-27 01:18:37.673 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributeValue" +) +2026-08-27 01:18:37.673 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.674 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.674 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.674 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.674 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.674 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeValue for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.674 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.674 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:18:37.674 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributePlaceholderValue" +) +2026-08-27 01:18:37.675 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.675 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.675 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.675 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.675 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.675 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributePlaceholderValue for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.675 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.675 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:18:37.676 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.676 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.676 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:18:37.676 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.676 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.676 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.676 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.676 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.676 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.676 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.676 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.677 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.677 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.677 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:18:37.703 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.703 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:18:37.703 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:18:37.703 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:18:37.704 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.704 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.704 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.704 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.704 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.704 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.704 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.705 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.705 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.705 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.705 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.705 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.705 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:18:37.705 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers +↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.705 Df ReactTestApp[1584:8737e18] [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:37.705 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] [Match All] applied transformer `Element at index 0` to input {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)}, found {( + Button, identifier: 'BackButton' +)} +2026-08-27 01:18:37.705 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:18:37.709 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Current tree: +Application, 0x10e55ecc0, pid: 1584 + Window (Main), 0x10e52a340 + Other, 0x127ccc940 + Other, 0x127f66640 + Other, 0x127fd6fc0 + Other, 0x10e56a9c0 + Other, 0x127ffa240 + Other, 0x12f509c40 + Other, 0x10aaa4a40 + Other, 0x10ecbb3c0 + Other, 0x12f50f040 + NavigationBar, 0x10<…> +2026-08-27 01:18:37.709 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 found matching snapshots: {( + Button, identifier: 'BackButton' +)} (error: (null)) +2026-08-27 01:18:37.709 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 with results: (error: (null)) +2026-08-27 01:18:37.711 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributeLabel" +) +2026-08-27 01:18:37.711 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.711 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.711 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.711 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.711 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.711 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeLabel for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.711 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.711 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Checking 'BottomTabs Example' for privileged AX value slot attributes +2026-08-27 01:18:37.711 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeLabel" = "BottomTabs Example"; +} +2026-08-27 01:18:37.712 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributeValue" +) +2026-08-27 01:18:37.712 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.712 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.712 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.712 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.712 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.712 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeValue for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.712 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.712 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:18:37.713 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributePlaceholderValue" +) +2026-08-27 01:18:37.713 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.713 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.713 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.713 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.713 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.713 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributePlaceholderValue for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.713 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.713 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:18:37.714 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.714 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.714 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:18:37.714 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.715 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.715 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.715 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.715 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.715 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.715 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.715 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.715 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.715 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.715 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:18:37.743 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.743 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:18:37.743 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:18:37.743 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:18:37.743 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.744 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.744 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.744 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.744 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.744 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.744 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.744 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.744 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.744 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.744 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.744 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.744 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:18:37.745 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers +↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.745 Df ReactTestApp[1584:8737e18] [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:37.745 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] [Match All] applied transformer `Element at index 0` to input {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)}, found {( + Button, identifier: 'BackButton' +)} +2026-08-27 01:18:37.745 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:18:37.749 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Current tree: +Application, 0x119c331c0, pid: 1584 + Window (Main), 0x127c8d940 + Other, 0x127f9de40 + Other, 0x10ec71bc0 + Other, 0x119c8ecc0 + Other, 0x119cc70c0 + Other, 0x119c6a6c0 + Other, 0x10ecbd940 + Other, 0x127fa5ac0 + Other, 0x127fd3cc0 + Other, 0x127cefd40 + NavigationBar, 0x11<…> +2026-08-27 01:18:37.749 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 found matching snapshots: {( + Button, identifier: 'BackButton' +)} (error: (null)) +2026-08-27 01:18:37.749 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 with results: (error: (null)) +2026-08-27 01:18:37.750 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributeVisiblePoint" +) +2026-08-27 01:18:37.750 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.750 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.750 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.751 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.751 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeVisiblePoint for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.751 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.785 E ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeCommon] Unknown client: ReactTestApp +2026-08-27 01:18:37.791 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.791 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeVisiblePoint" = { + X = 38; + Y = 84; + }; +} +2026-08-27 01:18:37.792 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributeWindowContextId" +) +2026-08-27 01:18:37.792 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.792 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.792 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.792 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.792 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.792 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeWindowContextId for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.792 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.793 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeWindowContextId" = 1508916392; +} +2026-08-27 01:18:37.793 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributeWindowDisplayId" +) +2026-08-27 01:18:37.793 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.793 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.793 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.793 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.793 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.793 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeWindowDisplayId for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.793 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.793 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeWindowDisplayId" = 1; +} +2026-08-27 01:18:37.795 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributeFrame", + "XC_kAXXCAttributeWindowDisplayId", + "XC_kAXXCAttributeWindowContextId" +) +2026-08-27 01:18:37.795 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.795 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.795 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.795 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.795 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeFrame, XC_kAXXCAttributeWindowDisplayId, XC_kAXXCAttributeWindowContextId for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.795 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.795 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.795 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeFrame" = { + Height = 44; + Width = 44; + X = 16; + Y = 62; + }; + "XC_kAXXCAttributeWindowContextId" = 1508916392; + "XC_kAXXCAttributeWindowDisplayId" = 1; +} +2026-08-27 01:18:37.798 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributeLabel" +) +2026-08-27 01:18:37.798 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.798 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.798 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.798 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.798 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.798 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeLabel for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.798 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.798 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Checking 'BottomTabs Example' for privileged AX value slot attributes +2026-08-27 01:18:37.798 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeLabel" = "BottomTabs Example"; +} +2026-08-27 01:18:37.799 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributeValue" +) +2026-08-27 01:18:37.799 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.799 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.799 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.799 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.799 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.799 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeValue for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.799 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.799 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:18:37.800 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributePlaceholderValue" +) +2026-08-27 01:18:37.800 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.800 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.800 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.800 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.800 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.800 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributePlaceholderValue for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.800 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.800 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:18:37.801 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.801 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.801 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:18:37.801 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.801 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.802 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.802 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.802 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.802 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.802 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.802 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.802 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.802 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.802 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:18:37.828 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.828 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:18:37.828 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:18:37.828 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:18:37.829 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.829 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.829 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.829 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.829 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.829 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.829 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.830 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.830 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.830 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.830 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.830 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.830 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:18:37.830 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers +↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.830 Df ReactTestApp[1584:8738505] [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:37.830 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] applied transformer `Element at index 0` to input {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)}, found {( + Button, identifier: 'BackButton' +)} +2026-08-27 01:18:37.830 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:18:37.834 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Current tree: +Application, 0x10e5d66c0, pid: 1584 + Window (Main), 0x119cd6540 + Other, 0x10ecef740 + Other, 0x119cd6cc0 + Other, 0x12f5040c0 + Other, 0x119cd6b40 + Other, 0x119cd66c0 + Other, 0x119cd6e40 + Other, 0x119cba1c0 + Other, 0x119cba340 + Other, 0x119cbac40 + NavigationBar, 0x11<…> +2026-08-27 01:18:37.834 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 found matching snapshots: {( + Button, identifier: 'BackButton' +)} (error: (null)) +2026-08-27 01:18:37.834 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 with results: (error: (null)) +2026-08-27 01:18:37.835 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributeHasNativeFocus" +) +2026-08-27 01:18:37.836 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.836 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.836 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.836 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.836 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.836 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeHasNativeFocus for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.836 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.836 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeHasNativeFocus" = 0; +} +2026-08-27 01:18:37.836 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributeLabel" +) +2026-08-27 01:18:37.836 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.837 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.837 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.837 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.837 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.837 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeLabel for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.837 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.837 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Checking 'BottomTabs Example' for privileged AX value slot attributes +2026-08-27 01:18:37.837 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeLabel" = "BottomTabs Example"; +} +2026-08-27 01:18:37.838 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributeValue" +) +2026-08-27 01:18:37.838 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.838 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.838 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.838 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.838 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.838 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeValue for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.838 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.838 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:18:37.839 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 1584, elementOrHash.elementID: 4459555776.168. Attributes: ( + "XC_kAXXCAttributePlaceholderValue" +) +2026-08-27 01:18:37.839 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.839 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.839 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.839 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.839 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.839 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributePlaceholderValue for AX element pid: 1584, elementOrHash.elementID: 4459555776.168 +2026-08-27 01:18:37.839 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:18:37.839 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:18:37.840 Df ReactTestApp[1584:8737e18] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.840 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.840 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:18:37.840 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 1584 for query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.840 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.840 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.840 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.840 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.840 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.840 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.841 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.841 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.841 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.841 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:18:37.867 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.867 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:18:37.867 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:18:37.867 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:18:37.867 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.868 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.868 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.868 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.868 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.868 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.868 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.868 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:18:37.868 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:18:37.868 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:18:37.869 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.869 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.869 Df ReactTestApp[1584:8737de0] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:18:37.869 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 1584 using transformers +↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:18:37.869 Df ReactTestApp[1584:8738505] [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:37.869 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] applied transformer `Element at index 0` to input {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)}, found {( + Button, identifier: 'BackButton' +)} +2026-08-27 01:18:37.869 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:18:37.873 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Current tree: +Application, 0x127ffba40, pid: 1584 + Window (Main), 0x119cb3ec0 + Other, 0x119cf2740 + Other, 0x114bb7ac0 + Other, 0x127ffb8c0 + Other, 0x127ffb740 + Other, 0x127f05ec0 + Other, 0x12f5028c0 + Other, 0x12f502ec0 + Other, 0x12f502440 + Other, 0x12f503040 + NavigationBar, 0x12<…> +2026-08-27 01:18:37.873 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 found matching snapshots: {( + Button, identifier: 'BackButton' +)} (error: (null)) +2026-08-27 01:18:37.873 Df ReactTestApp[1584:8738505] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 with results: (error: (null)) +2026-08-27 01:18:38.469 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXAppAccessibility] Presentation controller doesn't modalize: <_UIRootPresentationController: 0x10b3b4b80> +2026-08-27 01:18:38.471 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:38.477 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:18:38.477 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:18:39.250 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x111a11980; type: 0; subtype: 0; backing type: 11; tagged context: 0x59F03CA8; shouldSend: 1; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:18:39.250 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Sending UIEvent type: 0; subtype: 0; to windows: 1; dispatchLevel: 1 +2026-08-27 01:18:39.250 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Sending UIEvent type: 0; subtype: 0; to window: ; contextId: 0x59F03CA8 +2026-08-27 01:18:39.254 A ReactTestApp[1584:8737de0] (UIKitCore) send gesture actions +2026-08-27 01:18:39.256 A ReactTestApp[1584:8737de0] (UIKitCore) send gesture actions +2026-08-27 01:18:39.268 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x111a11980; type: 0; subtype: 0; backing type: 11; tagged context: 0x59F03CA8; shouldSend: 0; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:18:39.277 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1001) +2026-08-27 01:18:39.282 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x111a11980; type: 0; subtype: 0; backing type: 11; tagged context: 0x59F03CA8; shouldSend: 0; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:18:39.292 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1001) error:0 data: +2026-08-27 01:18:39.293 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.293 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.293 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.293 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.293 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.293 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.293 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.293 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.293 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.293 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.293 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.293 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.293 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.293 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.293 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.293 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.293 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.293 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.293 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.294 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.294 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.294 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.294 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.294 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.294 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.294 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.294 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.294 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.294 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.294 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.294 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.294 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.294 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.294 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.294 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.294 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.294 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.294 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.294 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.295 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.295 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.295 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.295 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.295 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.295 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.296 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x111a11980; type: 0; subtype: 0; backing type: 11; tagged context: 0x59F03CA8; shouldSend: 0; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:18:39.298 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.298 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.298 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.298 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.298 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.309 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x111a11980; type: 0; subtype: 0; backing type: 11; tagged context: 0x59F03CA8; shouldSend: 0; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:18:39.311 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.311 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.311 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.311 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.326 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x111a11980; type: 0; subtype: 0; backing type: 11; tagged context: 0x59F03CA8; shouldSend: 0; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:18:39.326 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x111a11980; type: 0; subtype: 0; backing type: 11; tagged context: 0x59F03CA8; shouldSend: 1; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:18:39.326 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Sending UIEvent type: 0; subtype: 0; to windows: 1; dispatchLevel: 1 +2026-08-27 01:18:39.326 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Sending UIEvent type: 0; subtype: 0; to window: ; contextId: 0x59F03CA8 +2026-08-27 01:18:39.326 A ReactTestApp[1584:8737de0] (UIKitCore) send gesture actions +2026-08-27 01:18:39.327 A ReactTestApp[1584:8737de0] (UIKitCore) send gesture actions +2026-08-27 01:18:39.327 A ReactTestApp[1584:8737de0] (UIKitCore) send control actions +2026-08-27 01:18:39.327 Df ReactTestApp[1584:8737de0] (CoreFoundation) Incorrect NSStringEncoding value 0x8000100 detected. Assuming NSStringEncodingASCII. Will stop this compatibility mapping behavior in the near future. +2026-08-27 01:18:39.329 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:18:39.332 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:18:39.332 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.332 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.332 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.332 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.332 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.332 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.332 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.332 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.332 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.332 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.332 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.333 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.333 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.333 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.333 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.333 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.333 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.333 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.333 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.333 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.333 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:39.334 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:18:39.334 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.334 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.334 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:18:39.343 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x111a11980; type: 0; subtype: 0; backing type: 11; tagged context: 0x59F03CA8; shouldSend: 0; ignoreInteractionEvents: 0, systemGestureStateChange: 1 +2026-08-27 01:18:39.344 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.344 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.344 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.344 A ReactTestApp[1584:8737de0] (UIKitCore) send gesture actions +2026-08-27 01:18:39.344 A ReactTestApp[1584:8737de0] (UIKitCore) send gesture actions +2026-08-27 01:18:39.344 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.352 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:KeyboardFocusAssistant] requestKeyboardFocusWithProvenance: (token:) +2026-08-27 01:18:39.355 I ReactTestApp[1584:8737e64] [com.facebook.react.log:javascript] 'ios', ' Rendering Contacts' +2026-08-27 01:18:39.360 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.361 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.361 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.361 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.368 I ReactTestApp[1584:8737e64] [com.facebook.react.log:javascript] SafeAreaView has been deprecated and will be removed in a future release. Please use 'react-native-safe-area-context' instead. See https://github.com/th3rdwave/react-native-safe-area-context +2026-08-27 01:18:39.377 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.377 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.377 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.377 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.394 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.394 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.394 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.394 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.410 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.410 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.410 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.411 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.411 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.427 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.427 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.427 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.427 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.444 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.444 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.444 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.444 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.444 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.444 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.457 I ReactTestApp[1584:8737e64] [com.facebook.react.log:javascript] ┘ %caction %cNAVIGATE %c{ %cname%c: %c"Contacts"%c, %cparams%c: %cundefined%c, %cmerge%c: %cundefined%c, %cpop%c: %cundefined%c } +2026-08-27 01:18:39.457 I ReactTestApp[1584:8737e64] [com.facebook.react.log:javascript] │ '%caction', 'color: #C2185B; font-weight: bold', { type: 'NAVIGATE', + payload: + { name: 'Contacts', + params: undefined, + merge: undefined, + pop: undefined }, + target: 'tab-YWKoQckpLQEaaqXLTPuzZ' } +2026-08-27 01:18:39.459 I ReactTestApp[1584:8737e64] [com.facebook.react.log:javascript] │ '%cstate', 'color: #C2185B; font-weight: bold', { stale: false, + type: 'stack', + key: 'stack-gzA9OG_EtLROpgQeLLhvJ', + index: 1, + routeNames: + [ 'BottomTabs Example', + 'Three Tabs', + 'Four Tabs', + 'Five Tabs', + 'Six Tabs', + 'SF Symbols', + 'Labeled Tabs', + 'Unlabeled Tabs', + 'Embedded stacks', + 'Lazy Tabs', + 'Tab Bar Hidden', + 'Custom tabBar', + 'Original icon colors', + 'Four Tabs - no animations', + 'Four Tabs - Transparent scroll edge appearance', + 'Four Tabs - Opaque scroll edge appearance', + 'Four Tabs - Custom Background Color of Tabs', + 'Four Tabs - Active Indicator color', + 'Four Tabs - With Hidden Tab', + 'Native Bottom Tabs with freezeOnBlur', + 'Native Bottom Tabs with SVG Icons', + 'Native Bottom Tabs unmounting', + 'Native Bottom Tabs with SVG Remote Icons', + 'Native Bottom Tabs with custom tabBar', + 'Native Bottom Tabs with screenLayout', + 'Native Bottom Tabs with Lazy', + 'Native Bo<…> +2026-08-27 01:18:39.459 I ReactTestApp[1584:8737e64] [com.facebook.react.log:javascript] ┘ +2026-08-27 01:18:39.465 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.465 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.466 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.466 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.466 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.486 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1000) +2026-08-27 01:18:39.522 E ReactTestApp[1584:8737de0] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:18:39.522 E ReactTestApp[1584:8737de0] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:18:39.522 E ReactTestApp[1584:8737de0] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:18:39.522 E ReactTestApp[1584:8737de0] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:18:39.522 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:39.522 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:18:39.522 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:18:39.523 E ReactTestApp[1584:8737de0] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:18:39.523 E ReactTestApp[1584:8737de0] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:18:39.523 E ReactTestApp[1584:8737de0] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:18:39.523 E ReactTestApp[1584:8737de0] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:18:39.523 E ReactTestApp[1584:8737de0] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:18:39.523 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:39.534 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.534 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.535 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.535 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.535 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.535 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.535 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.535 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.535 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.535 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.535 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.535 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.535 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.535 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.535 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.535 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.535 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.535 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.536 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.536 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.536 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.536 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.537 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.537 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.537 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.537 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.537 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.537 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.537 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.537 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.537 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.537 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.537 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.537 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.537 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.537 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.537 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.537 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.537 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.537 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.537 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.538 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.538 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.538 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.538 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.538 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.538 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.538 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.538 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.538 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.538 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.538 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.538 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.538 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.538 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.538 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.538 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.538 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.538 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.538 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.539 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.539 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.539 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.539 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.539 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.539 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.539 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.539 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.539 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.539 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.539 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.539 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.539 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.539 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.539 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.539 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.539 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.539 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.539 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.539 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.540 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.540 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.540 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.540 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.540 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.540 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.540 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.540 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.540 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.540 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.540 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.540 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.540 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.540 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.540 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.540 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.540 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.540 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.540 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.541 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.541 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.541 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.541 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.541 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.541 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.541 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.541 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.541 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.541 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.541 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.541 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.541 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.541 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.541 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.541 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.541 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.541 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.541 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.541 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.542 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.542 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.542 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.542 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.542 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.542 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.542 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.542 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.542 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.542 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.542 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.542 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.542 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.542 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.542 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.542 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.542 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.542 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.543 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.543 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1000) error:0 data: +2026-08-27 01:18:39.566 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:18:39.566 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:18:39.582 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.582 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.583 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.583 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.583 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.583 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.583 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.583 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.594 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.594 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.594 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.594 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.610 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.610 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.611 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.611 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.627 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.627 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.627 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.627 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.644 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.644 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.644 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.644 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.644 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.666 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.666 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.666 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.666 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.677 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.677 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.678 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.678 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.678 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.678 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.694 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.694 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.694 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.694 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.694 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.710 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.710 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.710 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.711 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.711 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.711 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.711 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.727 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.727 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.727 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.727 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.727 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.744 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.744 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.744 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.744 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.744 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.744 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.744 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.744 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.744 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.744 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.745 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.745 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.745 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.745 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.745 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.745 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.745 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.745 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.745 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.745 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.745 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.745 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.745 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.745 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.745 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.745 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.745 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.745 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.745 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.746 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.746 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.746 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.746 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.746 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.746 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.746 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.746 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.746 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.746 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.746 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.746 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.746 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.746 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.746 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.746 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.746 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.746 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.746 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.747 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.747 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.747 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.747 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.765 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.765 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.765 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.765 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.777 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.777 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.777 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.777 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.777 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.793 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.794 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.794 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.794 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.882 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1001) +2026-08-27 01:18:39.882 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1001) +2026-08-27 01:18:39.882 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.882 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.882 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.882 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.882 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.882 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.882 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.882 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.882 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.882 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.883 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.883 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.883 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.883 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.883 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.883 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.883 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.883 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.883 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.883 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.883 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.883 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.883 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.883 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.883 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.883 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.883 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.883 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.884 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.884 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.884 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.884 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.884 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.884 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.884 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.884 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1001) error:0 data: +2026-08-27 01:18:39.884 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.893 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.893 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.893 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.894 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.894 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.894 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.910 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.910 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.910 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.910 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.910 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.910 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.911 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.911 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.911 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.911 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.927 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.927 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.927 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.927 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.943 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.943 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.944 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.944 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.944 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.944 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.960 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.960 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.960 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.960 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.961 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.961 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.961 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.961 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.961 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.961 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.961 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.961 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.961 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.961 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.961 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.977 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.977 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.977 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.977 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.977 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.977 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.977 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:39.993 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.993 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.993 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:39.994 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:40.010 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.010 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.010 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.010 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.010 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:40.027 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.027 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.027 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.027 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:40.043 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.043 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.043 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.044 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:40.060 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.060 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.060 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.060 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:40.077 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.077 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.077 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.077 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.077 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:40.094 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.094 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.094 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.094 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:40.110 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.110 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.111 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.111 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:40.127 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.127 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.128 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.128 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:40.144 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.145 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.145 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.145 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:40.161 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.161 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.161 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.162 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:40.178 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.178 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.178 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.179 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:40.194 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.195 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.195 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.195 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:40.211 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.211 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.212 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.212 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:40.228 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.228 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.228 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.228 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.229 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.229 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:40.244 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.245 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.245 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.245 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:40.260 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.260 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.260 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.260 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:40.276 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.277 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.277 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.277 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:40.293 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.293 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.293 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.293 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:40.310 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.310 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.310 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.310 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.311 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:40.328 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.328 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.328 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.328 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:40.476 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.477 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:40.582 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.582 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:40.582 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:41.016 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:41.016 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:41.761 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXAppAccessibility] Presentation controller doesn't modalize: <_UIRootPresentationController: 0x10b37b300> +2026-08-27 01:18:41.762 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:41.776 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:18:41.777 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:18:42.616 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:42.616 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:18:42.618 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:42.619 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:18:42.619 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:42.626 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:42.626 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:42.626 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:44.656 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXAppAccessibility] Presentation controller doesn't modalize: <_UIRootPresentationController: 0x10b3fd200> +2026-08-27 01:18:44.656 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:44.660 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:18:44.661 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:18:45.510 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:45.510 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:18:45.510 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:45.511 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:18:45.511 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:45.898 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXAppAccessibility] Presentation controller doesn't modalize: <_UIRootPresentationController: 0x10b391b80> +2026-08-27 01:18:45.900 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:45.910 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:18:45.910 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +[agent-device][mark][2026-08-27T00:18:45.991Z] after fixed first lazy Contacts activation +2026-08-27 01:18:46.750 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:46.751 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:18:46.753 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:46.754 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:18:46.755 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:46.760 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:46.760 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +[agent-device][mark][2026-08-27T00:18:52.471Z] before fixed first lazy dark activation +2026-08-27 01:18:53.348 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXAppAccessibility] Presentation controller doesn't modalize: <_UIRootPresentationController: 0x10b3fc080> +2026-08-27 01:18:53.349 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:53.360 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:18:53.360 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:18:54.113 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x111a11980; type: 0; subtype: 0; backing type: 11; tagged context: 0x59F03CA8; shouldSend: 1; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:18:54.113 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Sending UIEvent type: 0; subtype: 0; to windows: 1; dispatchLevel: 1 +2026-08-27 01:18:54.113 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Sending UIEvent type: 0; subtype: 0; to window: ; contextId: 0x59F03CA8 +2026-08-27 01:18:54.115 A ReactTestApp[1584:8737de0] (UIKitCore) send gesture actions +2026-08-27 01:18:54.122 A ReactTestApp[1584:8737de0] (UIKitCore) send gesture actions +2026-08-27 01:18:54.124 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x111a11980; type: 0; subtype: 0; backing type: 11; tagged context: 0x59F03CA8; shouldSend: 0; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:18:54.139 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x111a11980; type: 0; subtype: 0; backing type: 11; tagged context: 0x59F03CA8; shouldSend: 0; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:18:54.150 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.150 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.150 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.150 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.150 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.150 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.150 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.150 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.150 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.150 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.150 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.150 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.150 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.151 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.151 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.151 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.151 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.151 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.151 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.151 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.151 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.151 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.151 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.151 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.151 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.151 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.151 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.151 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.151 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.151 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.151 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.151 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.151 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.152 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.152 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.152 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.152 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.152 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.152 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.152 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.152 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.152 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x111a11980; type: 0; subtype: 0; backing type: 11; tagged context: 0x59F03CA8; shouldSend: 0; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:18:54.154 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.154 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.154 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.154 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.160 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.161 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.161 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.161 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.176 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x111a11980; type: 0; subtype: 0; backing type: 11; tagged context: 0x59F03CA8; shouldSend: 0; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:18:54.177 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.177 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.177 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.178 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.193 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x111a11980; type: 0; subtype: 0; backing type: 11; tagged context: 0x59F03CA8; shouldSend: 0; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:18:54.193 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x111a11980; type: 0; subtype: 0; backing type: 11; tagged context: 0x59F03CA8; shouldSend: 1; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:18:54.193 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Sending UIEvent type: 0; subtype: 0; to windows: 1; dispatchLevel: 1 +2026-08-27 01:18:54.193 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Sending UIEvent type: 0; subtype: 0; to window: ; contextId: 0x59F03CA8 +2026-08-27 01:18:54.193 A ReactTestApp[1584:8737de0] (UIKitCore) send gesture actions +2026-08-27 01:18:54.193 A ReactTestApp[1584:8737de0] (UIKitCore) send gesture actions +2026-08-27 01:18:54.194 A ReactTestApp[1584:8737de0] (UIKitCore) send control actions +2026-08-27 01:18:54.194 Df ReactTestApp[1584:8737de0] (CoreFoundation) Incorrect NSStringEncoding value 0x8000100 detected. Assuming NSStringEncodingASCII. Will stop this compatibility mapping behavior in the near future. +2026-08-27 01:18:54.196 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:18:54.199 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:18:54.199 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.199 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.199 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.199 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.199 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.199 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.199 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.199 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.200 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.200 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.200 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.200 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.200 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.200 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.200 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.200 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.200 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.200 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.200 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.200 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.200 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.209 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x111a11980; type: 0; subtype: 0; backing type: 11; tagged context: 0x59F03CA8; shouldSend: 0; ignoreInteractionEvents: 0, systemGestureStateChange: 1 +2026-08-27 01:18:54.210 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.211 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.211 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.211 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:54.211 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:18:54.212 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.212 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.212 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:18:54.212 A ReactTestApp[1584:8737de0] (UIKitCore) send gesture actions +2026-08-27 01:18:54.212 A ReactTestApp[1584:8737de0] (UIKitCore) send gesture actions +2026-08-27 01:18:54.215 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:KeyboardFocusAssistant] requestKeyboardFocusWithProvenance: (token:) +2026-08-27 01:18:54.216 I ReactTestApp[1584:8737e64] [com.facebook.react.log:javascript] ┘ %caction %cNAVIGATE %c{ %cname%c: %c"Dark"%c, %cparams%c: %cundefined%c, %cmerge%c: %cundefined%c, %cpop%c: %cundefined%c } +2026-08-27 01:18:54.216 I ReactTestApp[1584:8737e64] [com.facebook.react.log:javascript] │ '%caction', 'color: #C2185B; font-weight: bold', { type: 'NAVIGATE', + payload: + { name: 'Dark', + params: undefined, + merge: undefined, + pop: undefined }, + target: 'tab-YWKoQckpLQEaaqXLTPuzZ' } +2026-08-27 01:18:54.217 I ReactTestApp[1584:8737e64] [com.facebook.react.log:javascript] │ '%cstate', 'color: #C2185B; font-weight: bold', { stale: false, + type: 'stack', + key: 'stack-gzA9OG_EtLROpgQeLLhvJ', + index: 1, + routeNames: + [ 'BottomTabs Example', + 'Three Tabs', + 'Four Tabs', + 'Five Tabs', + 'Six Tabs', + 'SF Symbols', + 'Labeled Tabs', + 'Unlabeled Tabs', + 'Embedded stacks', + 'Lazy Tabs', + 'Tab Bar Hidden', + 'Custom tabBar', + 'Original icon colors', + 'Four Tabs - no animations', + 'Four Tabs - Transparent scroll edge appearance', + 'Four Tabs - Opaque scroll edge appearance', + 'Four Tabs - Custom Background Color of Tabs', + 'Four Tabs - Active Indicator color', + 'Four Tabs - With Hidden Tab', + 'Native Bottom Tabs with freezeOnBlur', + 'Native Bottom Tabs with SVG Icons', + 'Native Bottom Tabs unmounting', + 'Native Bottom Tabs with SVG Remote Icons', + 'Native Bottom Tabs with custom tabBar', + 'Native Bottom Tabs with screenLayout', + 'Native Bottom Tabs with Lazy', + 'Native Bo<…> +2026-08-27 01:18:54.217 I ReactTestApp[1584:8737e64] [com.facebook.react.log:javascript] ┘ +2026-08-27 01:18:54.235 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1000) +2026-08-27 01:18:54.249 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1000) error:0 data: +2026-08-27 01:18:54.254 E ReactTestApp[1584:8737de0] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:18:54.254 E ReactTestApp[1584:8737de0] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:18:54.254 E ReactTestApp[1584:8737de0] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:18:54.254 E ReactTestApp[1584:8737de0] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:18:54.255 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:54.255 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:18:54.255 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:18:54.256 E ReactTestApp[1584:8737de0] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:18:54.256 E ReactTestApp[1584:8737de0] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:18:54.256 E ReactTestApp[1584:8737de0] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:18:54.256 E ReactTestApp[1584:8737de0] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:18:54.256 E ReactTestApp[1584:8737de0] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:18:54.256 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:54.257 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.257 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.257 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.257 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.257 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.257 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.257 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.257 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.257 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.257 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.257 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.257 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.257 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.257 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.257 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.257 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.257 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.258 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.258 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.258 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:18:54.258 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:18:54.258 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.260 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.260 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.260 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.260 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.261 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.277 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.277 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.277 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.277 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.294 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.294 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.294 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.294 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.310 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.310 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.311 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.311 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.311 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.311 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.328 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.329 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.329 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.329 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.329 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.329 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.356 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.357 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.357 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.357 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.357 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.357 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.357 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.357 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.357 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.357 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.357 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.357 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.357 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.357 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.357 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.357 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.357 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.357 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.357 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.357 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.358 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.358 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.358 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.358 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.358 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.358 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.358 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.358 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.358 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.358 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.358 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.358 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.358 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.358 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.358 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.358 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.358 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.358 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.358 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.358 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.359 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.359 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.359 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.359 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.359 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.359 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.359 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.359 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.359 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.359 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.359 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.359 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.359 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.359 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.359 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.359 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.359 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.359 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.359 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.359 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.360 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.360 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.360 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.360 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.360 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.360 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.360 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.360 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.360 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.360 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.360 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.360 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.360 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.360 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.360 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.360 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.360 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.360 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.360 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.360 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.361 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.361 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.361 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.361 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.361 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.361 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.361 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.361 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.361 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.361 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.361 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.361 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.361 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.361 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.361 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.361 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.361 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.361 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.361 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.362 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.362 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.362 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.362 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.362 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.362 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.362 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.362 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.362 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.362 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.362 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.362 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.362 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.362 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.362 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.362 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.362 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.362 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.362 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.363 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.363 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.363 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.373 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.374 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.374 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.374 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.374 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.377 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.377 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.377 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.377 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.394 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.394 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.394 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.394 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.410 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.410 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.411 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.411 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.427 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.427 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.427 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.427 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.444 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.444 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.444 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.444 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.460 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.460 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.460 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.461 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.478 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.478 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.478 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.478 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.478 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.494 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.494 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.494 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.494 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.510 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.511 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.511 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.511 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.511 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.511 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.527 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.527 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.527 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.527 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.527 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.544 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.544 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.544 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.544 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.544 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.560 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.561 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.561 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.561 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.561 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.578 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.578 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.578 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.578 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.578 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.578 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.578 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.578 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.578 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.578 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.578 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.578 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.579 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.579 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.579 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.579 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.579 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.579 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.579 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.579 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.579 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.579 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.579 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.579 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.579 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.579 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.579 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.580 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.580 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.580 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.580 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.580 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.580 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.580 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.580 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.580 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.580 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.580 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.580 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.580 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.580 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.580 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.580 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.580 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.581 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.581 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.581 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.581 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.581 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.581 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.581 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.581 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.581 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.581 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.581 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.581 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.581 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.581 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.581 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.581 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.582 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.582 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.582 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.593 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.594 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.594 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.594 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.594 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.594 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.610 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.610 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.610 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.610 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.610 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.627 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.627 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.627 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.627 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.643 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.644 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.644 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.644 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.644 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.644 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.644 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.644 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.644 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.644 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.644 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.644 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.661 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.661 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.661 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.661 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.661 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.661 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.661 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.688 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1001) +2026-08-27 01:18:54.688 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1001) +2026-08-27 01:18:54.688 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.688 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.688 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.688 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.688 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.688 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.688 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.688 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.688 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.688 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.688 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.689 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1001) error:0 data: +2026-08-27 01:18:54.689 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.689 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.690 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.690 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.690 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.693 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.693 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.693 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.694 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.694 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.694 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.694 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.694 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.694 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.710 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.710 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.710 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.710 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.710 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.710 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.710 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.727 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.727 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.727 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.727 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.727 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.727 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.743 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.743 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.744 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.744 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.744 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.744 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.744 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.744 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.744 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.744 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.760 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.760 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.760 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.760 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.776 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.777 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.777 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.777 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.777 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.793 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.793 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.793 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.793 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.794 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.810 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.810 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.810 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.810 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.810 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.810 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.810 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.827 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.827 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.827 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.827 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.843 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.843 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.844 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.844 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.844 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.860 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.860 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.860 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.860 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.876 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.877 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.877 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.877 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.893 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.893 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.894 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.894 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.910 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.910 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.910 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.911 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.927 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.927 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.927 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.927 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.943 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.944 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.944 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.944 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.960 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.961 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.961 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.961 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.978 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.978 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.978 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.978 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:54.994 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.994 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.994 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:54.995 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:55.011 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.011 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.011 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.011 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:55.027 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.028 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.028 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.028 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:55.044 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.045 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.045 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.045 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:55.060 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.061 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.061 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.061 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:55.077 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.078 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.078 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.078 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:55.094 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.094 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.094 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.094 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.094 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.094 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:55.110 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.111 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.111 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.111 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:55.126 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.127 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.127 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.127 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:55.143 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.143 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.143 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.143 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.144 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:55.160 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.160 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.161 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.161 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.161 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:55.483 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.483 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:55.500 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.501 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:55.850 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:55.851 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:57.094 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXAppAccessibility] Presentation controller doesn't modalize: <_UIRootPresentationController: 0x13af07b00> +2026-08-27 01:18:57.096 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:57.111 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:18:57.111 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:18:57.480 Df ReactTestApp[1584:8738505] [com.apple.CFNetwork:Default] Connection 7: cleaning up +2026-08-27 01:18:57.480 Df ReactTestApp[1584:8738505] [com.apple.network:connection] [C7 C39EE75A-FFEF-4A58-96EB-7D7CCCF30101 IPv4#4fac4698:8087 tcp, url: http://127.0.0.1:8087/assets/assets/avatar-1.png, definite, attribution: developer] cancel +2026-08-27 01:18:57.480 Df ReactTestApp[1584:8738505] [com.apple.network:connection] [C7 C39EE75A-FFEF-4A58-96EB-7D7CCCF30101 IPv4#4fac4698:8087 tcp, url: http://127.0.0.1:8087/assets/assets/avatar-1.png, definite, attribution: developer] cancelled + [C7 7AD527F0-5477-4358-9D4B-A5D215D230DC 127.0.0.1:53049<->IPv4#4fac4698:8087] + Connected Path: satisfied (Path is satisfied), interface: lo0 + Privacy Stance: Not Eligible + Duration: 30.403s, TCP @0.000s took 0.003s + bytes in/out: 366167/2289, packets in/out: 29/8, rtt: 0.001s, retransmitted bytes: 0, out-of-order bytes: 0 + ecn packets sent/acked/marked/lost: 0/0/0/0 +2026-08-27 01:18:57.480 I ReactTestApp[1584:8738505] [com.apple.network:connection] nw_endpoint_handler_cancel [C7 IPv4#4fac4698:8087 ready socket-flow (satisfied (Path is satisfied), interface: lo0)] +2026-08-27 01:18:57.480 Df ReactTestApp[1584:8738505] [com.apple.network:connection] nw_connection_report_state_with_handler_on_nw_queue [C7] reporting state cancelled +2026-08-27 01:18:57.480 Df ReactTestApp[1584:8738505] [com.apple.CFNetwork:Default] Connection 8: cleaning up +2026-08-27 01:18:57.480 Df ReactTestApp[1584:8738505] [com.apple.network:connection] [C8 AD7343B0-FAF1-409D-94E4-4C2CAC7C91DD IPv4#4fac4698:8087 tcp, url: http://127.0.0.1:8087/assets/assets/book.jpg, definite, attribution: developer] cancel +2026-08-27 01:18:57.480 Df ReactTestApp[1584:8738505] [com.apple.network:connection] [C8 AD7343B0-FAF1-409D-94E4-4C2CAC7C91DD IPv4#4fac4698:8087 tcp, url: http://127.0.0.1:8087/assets/assets/book.jpg, definite, attribution: developer] cancelled + [C8 7AD527F0-5477-4358-9D4B-A5D215D230DC 127.0.0.1:53050<->IPv4#4fac4698:8087] + Connected Path: satisfied (Path is satisfied), interface: lo0 + Privacy Stance: Not Eligible + Duration: 30.402s, TCP @0.000s took 0.002s + bytes in/out: 712927/2283, packets in/out: 49/8, rtt: 0.001s, retransmitted bytes: 0, out-of-order bytes: 0 + ecn packets sent/acked/marked/lost: 0/0/0/0 +2026-08-27 01:18:57.481 I ReactTestApp[1584:8738505] [com.apple.network:connection] nw_endpoint_handler_cancel [C8 IPv4#4fac4698:8087 ready socket-flow (satisfied (Path is satisfied), interface: lo0)] +2026-08-27 01:18:57.481 Df ReactTestApp[1584:8738505] [com.apple.network:connection] nw_connection_report_state_with_handler_on_nw_queue [C8] reporting state cancelled +2026-08-27 01:18:57.481 Df ReactTestApp[1584:8738505] [com.apple.CFNetwork:Default] Connection 9: cleaning up +2026-08-27 01:18:57.481 Df ReactTestApp[1584:8738505] [com.apple.network:connection] [C9 8899F668-1EA1-4C3F-B617-AD496FF91AFF IPv4#4fac4698:8087 tcp, url: http://127.0.0.1:8087/assets/assets/album-art-01.jpg, definite, attribution: developer] cancel +2026-08-27 01:18:57.481 Df ReactTestApp[1584:8738505] [com.apple.network:connection] [C9 8899F668-1EA1-4C3F-B617-AD496FF91AFF IPv4#4fac4698:8087 tcp, url: http://127.0.0.1:8087/assets/assets/album-art-01.jpg, definite, attribution: developer] cancelled + [C9 7AD527F0-5477-4358-9D4B-A5D215D230DC 127.0.0.1:53051<->IPv4#4fac4698:8087] + Connected Path: satisfied (Path is satisfied), interface: lo0 + Privacy Stance: Not Eligible + Duration: 30.402s, TCP @0.000s took 0.001s + bytes in/out: 586073/6204, packets in/out: 46/11, rtt: 0.001s, retransmitted bytes: 0, out-of-order bytes: 0 + ecn packets sent/acked/marked/lost: 0/0/0/0 +2026-08-27 01:18:57.481 I ReactTestApp[1584:8738505] [com.apple.network:connection] nw_endpoint_handler_cancel [C9 IPv4#4fac4698:8087 ready socket-flow (satisfied (Path is satisfied), interface: lo0)] +2026-08-27 01:18:57.481 Df ReactTestApp[1584:8738505] [com.apple.network:connection] nw_connection_report_state_with_handler_on_nw_queue [C9] reporting state cancelled +2026-08-27 01:18:57.481 Df ReactTestApp[1584:8738505] [com.apple.CFNetwork:Default] Connection 10: cleaning up +2026-08-27 01:18:57.481 Df ReactTestApp[1584:8738505] [com.apple.network:connection] [C10 2A97175E-1BA2-4AF5-99AE-A7A4CD0470F6 IPv4#4fac4698:8087 tcp, url: http://127.0.0.1:8087/assets/assets/album-art-02.jpg, definite, attribution: developer] cancel +2026-08-27 01:18:57.481 Df ReactTestApp[1584:8738505] [com.apple.network:connection] [C10 2A97175E-1BA2-4AF5-99AE-A7A4CD0470F6 IPv4#4fac4698:8087 tcp, url: http://127.0.0.1:8087/assets/assets/album-art-02.jpg, definite, attribution: developer] cancelled + [C10 7AD527F0-5477-4358-9D4B-A5D215D230DC 127.0.0.1:53052<->IPv4#4fac4698:8087] + Connected Path: satisfied (Path is satisfied), interface: lo0 + Privacy Stance: Not Eligible + Duration: 30.401s, TCP @0.000s took 0.001s + bytes in/out: 302009/2583, packets in/out: 26/9, rtt: 0.001s, retransmitted bytes: 0, out-of-order bytes: 0 + ecn packets sent/acked/marked/lost: 0/0/0/0 +2026-08-27 01:18:57.481 I ReactTestApp[1584:8738505] [com.apple.network:connection] nw_endpoint_handler_cancel [C10 IPv4#4fac4698:8087 ready socket-flow (satisfied (Path is satisfied), interface: lo0)] +2026-08-27 01:18:57.481 I ReactTestApp[1584:8738505] [com.apple.network:connection] nw_association_schedule_deactivation will become dormant after 10000ms of inactivity +2026-08-27 01:18:57.481 Df ReactTestApp[1584:8738505] [com.apple.network:connection] nw_connection_report_state_with_handler_on_nw_queue [C10] reporting state cancelled +2026-08-27 01:18:57.482 Df ReactTestApp[1584:8738505] [com.apple.CFNetwork:Default] Connection 7: done +2026-08-27 01:18:57.482 I ReactTestApp[1584:8738505] [com.apple.network:connection] [C7 IPv4#4fac4698:8087 tcp, url: http://127.0.0.1:8087/assets/assets/avatar-1.png, definite, attribution: developer] dealloc +2026-08-27 01:18:57.482 Df ReactTestApp[1584:8738505] [com.apple.CFNetwork:Default] Connection 8: done +2026-08-27 01:18:57.482 I ReactTestApp[1584:8738505] [com.apple.network:connection] [C8 IPv4#4fac4698:8087 tcp, url: http://127.0.0.1:8087/assets/assets/book.jpg, definite, attribution: developer] dealloc +2026-08-27 01:18:57.482 Df ReactTestApp[1584:8738505] [com.apple.CFNetwork:Default] Connection 9: done +2026-08-27 01:18:57.482 I ReactTestApp[1584:8738505] [com.apple.network:connection] [C9 IPv4#4fac4698:8087 tcp, url: http://127.0.0.1:8087/assets/assets/album-art-01.jpg, definite, attribution: developer] dealloc +2026-08-27 01:18:57.483 Df ReactTestApp[1584:8738505] [com.apple.CFNetwork:Default] Connection 10: done +2026-08-27 01:18:57.483 I ReactTestApp[1584:8738505] [com.apple.network:connection] [C10 IPv4#4fac4698:8087 tcp, url: http://127.0.0.1:8087/assets/assets/album-art-02.jpg, definite, attribution: developer] dealloc +2026-08-27 01:18:57.940 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:57.941 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:18:57.942 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:57.942 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:18:57.943 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:18:57.943 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:57.943 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:18:57.944 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:19:00.070 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXAppAccessibility] Presentation controller doesn't modalize: <_UIRootPresentationController: 0x10b314280> +2026-08-27 01:19:00.071 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:19:00.076 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:19:00.078 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:19:00.920 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:19:00.920 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:19:00.922 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:19:00.923 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:19:00.923 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:19:00.926 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:19:00.926 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:19:01.486 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x111a11980; type: 0; subtype: 0; backing type: 11; tagged context: 0x59F03CA8; shouldSend: 1; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:19:01.486 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Sending UIEvent type: 0; subtype: 0; to windows: 1; dispatchLevel: 1 +2026-08-27 01:19:01.486 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Sending UIEvent type: 0; subtype: 0; to window: ; contextId: 0x59F03CA8 +2026-08-27 01:19:01.493 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x111a11980; type: 0; subtype: 0; backing type: 11; tagged context: 0x59F03CA8; shouldSend: 0; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:19:01.509 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x111a11980; type: 0; subtype: 0; backing type: 11; tagged context: 0x59F03CA8; shouldSend: 0; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:19:01.526 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x111a11980; type: 0; subtype: 0; backing type: 11; tagged context: 0x59F03CA8; shouldSend: 0; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:19:01.543 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x111a11980; type: 0; subtype: 0; backing type: 11; tagged context: 0x59F03CA8; shouldSend: 0; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:19:01.559 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x111a11980; type: 0; subtype: 0; backing type: 11; tagged context: 0x59F03CA8; shouldSend: 0; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:19:01.559 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x111a11980; type: 0; subtype: 0; backing type: 11; tagged context: 0x59F03CA8; shouldSend: 1; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:19:01.560 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Sending UIEvent type: 0; subtype: 0; to windows: 1; dispatchLevel: 1 +2026-08-27 01:19:01.560 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Sending UIEvent type: 0; subtype: 0; to window: ; contextId: 0x59F03CA8 +2026-08-27 01:19:01.560 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:19:01.560 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:19:01.576 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x111a11980; type: 0; subtype: 0; backing type: 11; tagged context: 0x59F03CA8; shouldSend: 0; ignoreInteractionEvents: 0, systemGestureStateChange: 1 +2026-08-27 01:19:01.576 A ReactTestApp[1584:8737de0] (UIKitCore) send gesture actions +2026-08-27 01:19:01.576 A ReactTestApp[1584:8737de0] (UIKitCore) send gesture actions +2026-08-27 01:19:01.589 Df ReactTestApp[1584:8737de0] [com.apple.UIKit:KeyboardFocusAssistant] requestKeyboardFocusWithProvenance: (token:) +2026-08-27 01:19:02.523 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXAppAccessibility] Presentation controller doesn't modalize: <_UIRootPresentationController: 0x10b3fce80> +2026-08-27 01:19:02.524 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:19:02.527 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:19:02.528 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +[agent-device][mark][2026-08-27T00:19:02.613Z] after fixed first lazy dark activation +2026-08-27 01:19:03.379 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:19:03.380 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:19:03.382 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:19:03.383 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:19:03.384 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:19:03.385 I ReactTestApp[1584:8737de0] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: diff --git a/artifacts/issue-547/after/logs/launch-console.log b/artifacts/issue-547/after/logs/launch-console.log new file mode 100644 index 00000000..2202a2d3 --- /dev/null +++ b/artifacts/issue-547/after/logs/launch-console.log @@ -0,0 +1,3 @@ +2026-08-27 01:17:56.587 ReactTestApp[1584:141786592] You've implemented -[ application:didReceiveRemoteNotification:fetchCompletionHandler:], but you still need to add "remote-notification" to the list of your supported UIBackgroundModes in your Info.plist. +2026-08-27 01:17:56.966 ReactTestApp[1584:141786592] Unbalanced calls to begin/end appearance transitions for . +objc[1584]: Class UIAccessibilityLoaderWebShared is implemented in both /private/var/run/com.apple.security.cryptexd/mnt/com.apple.iPhoneOS.SimulatorRuntime-v24.1.5390.6.rDKeNs/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 27.0.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/WebCore.axbundle/WebCore (0x1125dc310) and /private/var/run/com.apple.security.cryptexd/mnt/com.apple.iPhoneOS.SimulatorRuntime-v24.1.5390.6.rDKeNs/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 27.0.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/WebKit.axbundle/WebKit (0x111f94398). This may cause spurious casting failures and mysterious crashes. One of the duplicates must be removed or renamed. diff --git a/artifacts/issue-547/after/logs/xcodebuild-ios27.log b/artifacts/issue-547/after/logs/xcodebuild-ios27.log new file mode 100644 index 00000000..6df1fa78 --- /dev/null +++ b/artifacts/issue-547/after/logs/xcodebuild-ios27.log @@ -0,0 +1,465 @@ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/packages/react-native-bottom-tabs/ios/TabViewProvider.swift:284:46: warning: 'weak' ownership of capture 'self' differs from implicitly-captured strong reference in outer scope [#ImplicitStrongCapture] +276 | progressBlock: { _, _ in }, +277 | partialLoad: { _ in }, +278 | completionBlock: { error, image in + | |- note: 'self' implicitly strongly captured here + | `- note: add 'self' as a capture list item to silence +279 | if error != nil { +280 | print("[TabView] Error loading image: \(error!.localizedDescription)") + : +282 | } +283 | guard let image else { return } +284 | DispatchQueue.main.async { [weak self] in + | |- warning: 'weak' ownership of capture 'self' differs from implicitly-captured strong reference in outer scope [#ImplicitStrongCapture] + | `- note: explicitly assign the capture list item to silence +285 | guard let self else { return } +286 | let icon = image.resizeImageTo(size: iconSize) + +[#ImplicitStrongCapture]: +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/packages/react-native-bottom-tabs/ios/RCTBottomAccessoryComponentView.mm:51:16: warning: ISO C++ requires field designators to be specified in declaration order; field 'height' will be initialized after field 'width' [-Wreorder-init-list] + 51 | .width = frame.size.width + | ~~~~~~~~~^~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/packages/react-native-bottom-tabs/ios/RCTBottomAccessoryComponentView.mm:50:17: note: previous initialization for field 'height' is here + 50 | .height = frame.size.height, + | ^~~~~~~~~~~~~~~~~ +1 warning generated. +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/packages/react-native-bottom-tabs/ios/RCTTabViewComponentView.mm:271:16: warning: ISO C++ requires field designators to be specified in declaration order; field 'height' will be initialized after field 'width' [-Wreorder-init-list] + 271 | .width = size.width + | ~~~~~~~~~^~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/packages/react-native-bottom-tabs/ios/RCTTabViewComponentView.mm:270:17: note: previous initialization for field 'height' is here + 270 | .height = size.height, + | ^~~~~~~~~~~ +1 warning generated. +libtool: warning: 'EventEmitters-c3a7944599d428af88d8d6ee2e75742d.o' has no symbols +libtool: warning: 'States-838acebc085771805dccebd11aed767a.o' has no symbols +libtool: warning: 'States-8e25153dff0e281d57cd7fe938976393.o' has no symbols +libtool: warning: 'States-747c0be5cfbc75a227c21018b97ea89c.o' has no symbols +libtool: warning: 'States-302e61b6dcf500772a99797247da15e7.o' has no symbols +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/bottom-tabs/RNSBottomTabsHostComponentView.mm:1: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/bottom-tabs/RNSBottomTabsHostComponentView.h:9: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/RNSViewControllerInvalidating.h:3: +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:47:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 47 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:49:3: note: add a deprecation attribute to the declaration to silence this warning + 49 | static ShadowViewMutation InsertMutation( + | ^ + | FMT_DEPRECATED +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:64:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 64 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:66:3: note: add a deprecation attribute to the declaration to silence this warning + 66 | static ShadowViewMutation RemoveMutation( + | ^ + | FMT_DEPRECATED +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:83:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 83 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:85:3: note: add a deprecation attribute to the declaration to silence this warning + 85 | static ShadowViewMutation UpdateMutation( + | ^ + | FMT_DEPRECATED +3 warnings generated. +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-gesture-handler/apple/RNGestureHandlerButtonComponentView.mm:3: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-gesture-handler/apple/RNGestureHandlerButtonComponentView.h:11: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-gesture-handler/apple/RNGestureHandlerButton.h:9: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-gesture-handler/apple/RNGestureHandler.h:4: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-gesture-handler/apple/RNGestureHandlerEvents.h:5: +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-gesture-handler/apple/RNGHStylusData.h:23:16: warning: unused function 'ghSpherical2tilt' [-Wunused-function] + 23 | static CGPoint ghSpherical2tilt(double altitudeAngle, double azimuthAngle) + | ^~~~~~~~~~~~~~~~ +1 warning generated. +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-safe-area-context/common/cpp/react/renderer/components/safeareacontext/RNCSafeAreaViewShadowNode.cpp:3: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/components/view/conversions.h:17: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-renderercss/react/renderer/css/CSSAngle.h:13: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-renderercss/react/renderer/css/CSSDataType.h:15: +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-renderercss/react/renderer/css/CSSSyntaxParser.h:150:13: warning: parameter '' not found in the function declaration [-Wdocumentation] + 150 | * @param caller-specified return type of visitors. This type will + | ^~~~~~~~~ +1 warning generated. +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-safe-area-context/ios/Fabric/RNCSafeAreaProviderComponentView.mm:110:27: warning: ISO C++ requires field designators to be specified in declaration order; field 'left' will be initialized after field 'bottom' [-Wreorder-init-list] + 110 | .bottom = safeAreaInsets.bottom, + | ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-safe-area-context/ios/Fabric/RNCSafeAreaProviderComponentView.mm:109:25: note: previous initialization for field 'left' is here + 109 | .left = safeAreaInsets.left, + | ^~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-safe-area-context/ios/Fabric/RNCSafeAreaProviderComponentView.mm:111:26: warning: ISO C++ requires field designators to be specified in declaration order; field 'bottom' will be initialized after field 'right' [-Wreorder-init-list] + 111 | .right = safeAreaInsets.right, + | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-safe-area-context/ios/Fabric/RNCSafeAreaProviderComponentView.mm:110:27: note: previous initialization for field 'bottom' is here + 110 | .bottom = safeAreaInsets.bottom, + | ^~~~~~~~~~~~~~~~~~~~~ +2 warnings generated. +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-gesture-handler/apple/RNGestureHandlerModule.mm:80:1: warning: method possibly missing a [super invalidate] call [-Wobjc-missing-super-calls] + 80 | } + | ^ +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-gesture-handler/apple/RNGestureHandlerModule.mm:22: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-gesture-handler/apple/RNGestureHandler.h:4: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-gesture-handler/apple/RNGestureHandlerEvents.h:5: +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-gesture-handler/apple/RNGHStylusData.h:23:16: warning: unused function 'ghSpherical2tilt' [-Wunused-function] + 23 | static CGPoint ghSpherical2tilt(double altitudeAngle, double azimuthAngle) + | ^~~~~~~~~~~~~~~~ +2 warnings generated. +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/bottom-tabs/RNSTabsScreenViewController.mm:1: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/bottom-tabs/RNSTabsScreenViewController.h:2: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/bottom-tabs/RNSBottomTabsScreenComponentView.h:10: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/RNSViewControllerInvalidating.h:3: +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:47:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 47 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:49:3: note: add a deprecation attribute to the declaration to silence this warning + 49 | static ShadowViewMutation InsertMutation( + | ^ + | FMT_DEPRECATED +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:64:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 64 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:66:3: note: add a deprecation attribute to the declaration to silence this warning + 66 | static ShadowViewMutation RemoveMutation( + | ^ + | FMT_DEPRECATED +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:83:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 83 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:85:3: note: add a deprecation attribute to the declaration to silence this warning + 85 | static ShadowViewMutation UpdateMutation( + | ^ + | FMT_DEPRECATED +3 warnings generated. +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/bottom-tabs/RNSTabBarControllerDelegate.mm:3: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/bottom-tabs/RNSTabBarController.h:2: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/bottom-tabs/RNSTabBarAppearanceCoordinator.h:2: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/bottom-tabs/RNSBottomTabsHostComponentView.h:9: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/RNSViewControllerInvalidating.h:3: +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:47:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 47 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:49:3: note: add a deprecation attribute to the declaration to silence this warning + 49 | static ShadowViewMutation InsertMutation( + | ^ + | FMT_DEPRECATED +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:64:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 64 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:66:3: note: add a deprecation attribute to the declaration to silence this warning + 66 | static ShadowViewMutation RemoveMutation( + | ^ + | FMT_DEPRECATED +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:83:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 83 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:85:3: note: add a deprecation attribute to the declaration to silence this warning + 85 | static ShadowViewMutation UpdateMutation( + | ^ + | FMT_DEPRECATED +3 warnings generated. +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/bottom-tabs/RNSTabBarController.mm:1: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/bottom-tabs/RNSTabBarController.h:2: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/bottom-tabs/RNSTabBarAppearanceCoordinator.h:2: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/bottom-tabs/RNSBottomTabsHostComponentView.h:9: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/RNSViewControllerInvalidating.h:3: +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:47:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 47 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:49:3: note: add a deprecation attribute to the declaration to silence this warning + 49 | static ShadowViewMutation InsertMutation( + | ^ + | FMT_DEPRECATED +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:64:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 64 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:66:3: note: add a deprecation attribute to the declaration to silence this warning + 66 | static ShadowViewMutation RemoveMutation( + | ^ + | FMT_DEPRECATED +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:83:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 83 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:85:3: note: add a deprecation attribute to the declaration to silence this warning + 85 | static ShadowViewMutation UpdateMutation( + | ^ + | FMT_DEPRECATED +3 warnings generated. +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/bottom-tabs/RNSTabBarAppearanceCoordinator.mm:1: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/bottom-tabs/RNSTabBarAppearanceCoordinator.h:2: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/bottom-tabs/RNSBottomTabsHostComponentView.h:9: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/RNSViewControllerInvalidating.h:3: +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:47:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 47 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:49:3: note: add a deprecation attribute to the declaration to silence this warning + 49 | static ShadowViewMutation InsertMutation( + | ^ + | FMT_DEPRECATED +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:64:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 64 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:66:3: note: add a deprecation attribute to the declaration to silence this warning + 66 | static ShadowViewMutation RemoveMutation( + | ^ + | FMT_DEPRECATED +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:83:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 83 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:85:3: note: add a deprecation attribute to the declaration to silence this warning + 85 | static ShadowViewMutation UpdateMutation( + | ^ + | FMT_DEPRECATED +3 warnings generated. +libtool: warning: 'ReactNativeHost+View.o' has no symbols +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/RNSScreenStackHeaderConfig.mm:5: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-RCTFabric/React/RCTMountingTransactionObserving.h:10: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/MountingTransaction.h:10: +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:47:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 47 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:49:3: note: add a deprecation attribute to the declaration to silence this warning + 49 | static ShadowViewMutation InsertMutation( + | ^ + | FMT_DEPRECATED +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:64:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 64 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:66:3: note: add a deprecation attribute to the declaration to silence this warning + 66 | static ShadowViewMutation RemoveMutation( + | ^ + | FMT_DEPRECATED +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:83:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 83 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:85:3: note: add a deprecation attribute to the declaration to silence this warning + 85 | static ShadowViewMutation UpdateMutation( + | ^ + | FMT_DEPRECATED +3 warnings generated. +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/RNSScreenStack.mm:4: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-RCTFabric/React/RCTMountingTransactionObserving.h:10: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/MountingTransaction.h:10: +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:47:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 47 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:49:3: note: add a deprecation attribute to the declaration to silence this warning + 49 | static ShadowViewMutation InsertMutation( + | ^ + | FMT_DEPRECATED +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:64:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 64 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:66:3: note: add a deprecation attribute to the declaration to silence this warning + 66 | static ShadowViewMutation RemoveMutation( + | ^ + | FMT_DEPRECATED +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:83:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 83 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:85:3: note: add a deprecation attribute to the declaration to silence this warning + 85 | static ShadowViewMutation UpdateMutation( + | ^ + | FMT_DEPRECATED +3 warnings generated. +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/RNSScreenContentWrapper.mm:9: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-RCTFabric/React/RCTScrollViewComponentView.h:12: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-RCTFabric/React/RCTMountingTransactionObserving.h:10: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/MountingTransaction.h:10: +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:47:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 47 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:49:3: note: add a deprecation attribute to the declaration to silence this warning + 49 | static ShadowViewMutation InsertMutation( + | ^ + | FMT_DEPRECATED +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:64:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 64 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:66:3: note: add a deprecation attribute to the declaration to silence this warning + 66 | static ShadowViewMutation RemoveMutation( + | ^ + | FMT_DEPRECATED +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:83:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 83 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:85:3: note: add a deprecation attribute to the declaration to silence this warning + 85 | static ShadowViewMutation UpdateMutation( + | ^ + | FMT_DEPRECATED +3 warnings generated. +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/RNSScreen.mm:13: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-RCTFabric/React/RCTScrollViewComponentView.h:12: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-RCTFabric/React/RCTMountingTransactionObserving.h:10: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/MountingTransaction.h:10: +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:47:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 47 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:49:3: note: add a deprecation attribute to the declaration to silence this warning + 49 | static ShadowViewMutation InsertMutation( + | ^ + | FMT_DEPRECATED +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:64:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 64 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:66:3: note: add a deprecation attribute to the declaration to silence this warning + 66 | static ShadowViewMutation RemoveMutation( + | ^ + | FMT_DEPRECATED +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:83:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 83 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:85:3: note: add a deprecation attribute to the declaration to silence this warning + 85 | static ShadowViewMutation UpdateMutation( + | ^ + | FMT_DEPRECATED +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/RNSScreen.mm:1752:69: warning: 'statusBarFrame' is deprecated: first deprecated in iOS 13.0 - Use the statusBarManager property of the window scene instead. [-Wdeprecated-declarations] + 1752 | CGSize fallbackStatusBarSize = [[UIApplication sharedApplication] statusBarFrame].size; + | ^ +In file included from :1: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Target Support Files/RNScreens/RNScreens-prefix.pch:2: +In file included from /Applications/Xcode-27.0.0-Beta.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator27.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:13: +In file included from /Applications/Xcode-27.0.0-Beta.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator27.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h:29: +In file included from /Applications/Xcode-27.0.0-Beta.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator27.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h:20: +In file included from /Applications/Xcode-27.0.0-Beta.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator27.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityElement.h:12: +In file included from /Applications/Xcode-27.0.0-Beta.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator27.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h:13: +In file included from /Applications/Xcode-27.0.0-Beta.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator27.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h:9: +In file included from /Applications/Xcode-27.0.0-Beta.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator27.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:12: +/Applications/Xcode-27.0.0-Beta.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator27.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:131:38: note: property 'statusBarFrame' is declared deprecated here + 131 | @property(nonatomic,readonly) CGRect statusBarFrame API_DEPRECATED("Use the statusBarManager property of the window scene instead.", ios(2.0, 13.0)) API_UNAVAILABLE(tvos) API_UNAVAILABLE(visionos, watchos); // returns CGRectZero if the status bar is hidden + | ^ +/Applications/Xcode-27.0.0-Beta.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator27.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:131:38: note: 'statusBarFrame' has been explicitly marked deprecated here +4 warnings generated. +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/common/cpp/react/renderer/components/rnscreens/RNSSafeAreaViewShadowNode.cpp:6: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/components/view/conversions.h:17: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-renderercss/react/renderer/css/CSSAngle.h:13: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-renderercss/react/renderer/css/CSSDataType.h:15: +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-renderercss/react/renderer/css/CSSSyntaxParser.h:150:13: warning: parameter '' not found in the function declaration [-Wdocumentation] + 150 | * @param caller-specified return type of visitors. This type will + | ^~~~~~~~~ +1 warning generated. +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/conversion/RNSConversions-BottomTabs.mm:331:11: warning: enumeration value 'RNSBottomTabsScreenSystemItemNone' not handled in switch [-Wswitch] + 331 | switch (systemItem) { + | ^~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/conversion/RNSConversions-BottomTabs.mm:331:11: note: add missing switch cases + 331 | switch (systemItem) { + | ^ + 332 | case RNSBottomTabsScreenSystemItemBookmarks: +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/conversion/RNSConversions-BottomTabs.mm:357:107: warning: enum values with underlying type 'NSInteger' should not be used as format arguments; add an explicit cast to 'long' instead [-Wformat] + 357 | RCTAssert(true, @"Attempt to convert unknown bottom tabs screen systemItem to UITabBarSystemItem [%d]", systemItem); + | ~~ ^~~~~~~~~~ + | %ld static_cast( ) +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/conversion/RNSConversions-BottomTabs.mm:2: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-ImageManager/react/renderer/imagemanager/RCTImagePrimitivesConversions.h:10: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Core/React/RCTConvert.h:16: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Core/React/RCTLog.h:10: +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Core/React/RCTAssert.h:26:66: note: expanded from macro 'RCTAssert' + 26 | _RCTAssertFormat(#condition, __FILE__, __LINE__, __func__, __VA_ARGS__); \ + | ^~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/conversion/RNSConversions-BottomTabs.mm:357:107: warning: enum values with underlying type 'NSInteger' should not be used as format arguments; add an explicit cast to 'long' instead [-Wformat] + 357 | RCTAssert(true, @"Attempt to convert unknown bottom tabs screen systemItem to UITabBarSystemItem [%d]", systemItem); + | ~~ ^~~~~~~~~~ + | %ld static_cast( ) +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/conversion/RNSConversions-BottomTabs.mm:2: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-ImageManager/react/renderer/imagemanager/RCTImagePrimitivesConversions.h:10: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Core/React/RCTConvert.h:16: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Core/React/RCTLog.h:10: +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Core/React/RCTAssert.h:31:70: note: expanded from macro 'RCTAssert' + 31 | description:__VA_ARGS__]; \ + | ^~~~~~~~~~~ +3 warnings generated. +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/bottom-tabs/RNSBottomTabsScreenComponentView.mm:1: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/bottom-tabs/RNSBottomTabsScreenComponentView.h:10: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/RNSViewControllerInvalidating.h:3: +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:47:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 47 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:49:3: note: add a deprecation attribute to the declaration to silence this warning + 49 | static ShadowViewMutation InsertMutation( + | ^ + | FMT_DEPRECATED +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:64:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 64 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:66:3: note: add a deprecation attribute to the declaration to silence this warning + 66 | static ShadowViewMutation RemoveMutation( + | ^ + | FMT_DEPRECATED +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:83:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 83 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:85:3: note: add a deprecation attribute to the declaration to silence this warning + 85 | static ShadowViewMutation UpdateMutation( + | ^ + | FMT_DEPRECATED +3 warnings generated. +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/bottom-tabs/extensions/RNSBottomTabsHostComponentView+RNSImageLoader.mm:1: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/bottom-tabs/extensions/RNSBottomTabsHostComponentView+RNSImageLoader.h:1: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/bottom-tabs/RNSBottomTabsHostComponentView.h:9: +In file included from /Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/node_modules/react-native-screens/ios/RNSViewControllerInvalidating.h:3: +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:47:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 47 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:49:3: note: add a deprecation attribute to the declaration to silence this warning + 49 | static ShadowViewMutation InsertMutation( + | ^ + | FMT_DEPRECATED +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:64:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 64 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:66:3: note: add a deprecation attribute to the declaration to silence this warning + 66 | static ShadowViewMutation RemoveMutation( + | ^ + | FMT_DEPRECATED +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:83:7: warning: declaration is marked with '@deprecated' command but does not have a deprecation attribute [-Wdocumentation-deprecated-sync] + 83 | * @deprecated Pass parentTag instead of parentShadowView. + | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/apps/example/ios/Pods/Headers/Public/React-Fabric/react/renderer/mounting/ShadowViewMutation.h:85:3: note: add a deprecation attribute to the declaration to silence this warning + 85 | static ShadowViewMutation UpdateMutation( + | ^ + | FMT_DEPRECATED +3 warnings generated. +libtool: warning: 'NSString+RNSUtility.o' has no symbols +libtool: warning: 'RCTConvert+RNSBottomTabs.o' has no symbols +libtool: warning: 'RCTConvert+RNScreens.o' has no symbols +libtool: warning: 'RCTSurfaceTouchHandler+RNSUtility.o' has no symbols +libtool: warning: 'RCTTouchHandler+RNSUtility.o' has no symbols +libtool: warning: 'RNSSafeAreaViewEdges.o' has no symbols +libtool: warning: 'RNSSafeAreaViewLocalData.o' has no symbols +libtool: warning: 'RNSSafeAreaViewManager.o' has no symbols +libtool: warning: 'RNSSafeAreaViewShadowView.o' has no symbols +libtool: warning: 'UINavigationBar+RNSUtility.o' has no symbols +libtool: warning: 'UIScrollView+RNScreens.o' has no symbols +note: Removed stale file '/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/tmp/issue-547/DerivedData/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/SwiftUIIntrospect.build/Script-46EB2E0001E7D0.sh' + +note: Removed stale file '/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/tmp/issue-547/DerivedData/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-bottom-tabs.build/Script-46EB2E0001F6C0.sh' + +note: Removed stale file '/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/tmp/issue-547/DerivedData/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/hermes-engine.build/InputFileList-46EB2E0001FB50-hermes-engine-xcframeworks-input-files-a26538e34c6c1cea023e164c7a8f1dd1-resolved.xcfilelist' + +note: Removed stale file '/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/tmp/issue-547/DerivedData/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/hermes-engine.build/OutputFileList-46EB2E0001FB50-hermes-engine-xcframeworks-output-files-5ec3a97362b0565f1003402a257df533-resolved.xcfilelist' + +note: Removed stale file '/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/tmp/issue-547/DerivedData/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/hermes-engine.build/Script-46EB2E0001FB50.sh' + +note: Removed stale file '/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/tmp/issue-547/DerivedData/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/hermes-engine.build/Script-46EB2E0001FB60.sh' + +warning: Run script build phase '[CP-User] [Hermes] Replace Hermes for the right configuration, if needed' will be run during every build because it does not specify any outputs. To address this issue, either add output dependencies to the script phase, or configure it to run in every build by unchecking "Based on dependency analysis" in the script phase. (in target 'hermes-engine' from project 'Pods') +note: Removed stale file '/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/tmp/issue-547/DerivedData/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-RCTFBReactNativeSpec.build/Script-46EB2E0001FB30.sh' + +note: Run script build phase '[CP-User] [RN]Check FBReactNativeSpec' will be run during every build because the option to run the script phase "Based on dependency analysis" is unchecked. (in target 'React-RCTFBReactNativeSpec' from project 'Pods') +note: Removed stale file '/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/tmp/issue-547/DerivedData/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactCodegen.build/Objects-normal/arm64/RNEdgeToEdge-generated.o' + +note: Removed stale file '/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/tmp/issue-547/DerivedData/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactCodegen.build/Objects-normal/arm64/RNEdgeToEdgeJSI-generated.o' + +note: Removed stale file '/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/tmp/issue-547/DerivedData/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactCodegen.build/Script-46EB2E0001FB40.sh' + +note: Removed stale file '/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/tmp/issue-547/DerivedData/Build/Intermediates.noindex/ReactTestApp.build/Debug-iphonesimulator/ReactTestApp.build/InputFileList-13F8F792F719AC06E4486381-Pods-ReactTestApp-frameworks-Debug-input-files-d2519aa6b098a9f690358448bd3a4d26-resolved.xcfilelist' + +note: Removed stale file '/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/tmp/issue-547/DerivedData/Build/Intermediates.noindex/ReactTestApp.build/Debug-iphonesimulator/ReactTestApp.build/InputFileList-36DEB1A5AB8B4B21CD6EAED4-Pods-ReactTestApp-resources-Debug-input-files-126712cae02479c9502eb6cb43302857-resolved.xcfilelist' + +note: Removed stale file '/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/tmp/issue-547/DerivedData/Build/Intermediates.noindex/ReactTestApp.build/Debug-iphonesimulator/ReactTestApp.build/OutputFileList-13F8F792F719AC06E4486381-Pods-ReactTestApp-frameworks-Debug-output-files-1a4f4f161e071ba805592d60f9b9097e-resolved.xcfilelist' + +note: Removed stale file '/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/tmp/issue-547/DerivedData/Build/Intermediates.noindex/ReactTestApp.build/Debug-iphonesimulator/ReactTestApp.build/OutputFileList-36DEB1A5AB8B4B21CD6EAED4-Pods-ReactTestApp-resources-Debug-output-files-ce3075cbca3fc4018e2ad29d79083a06-resolved.xcfilelist' + +note: Removed stale file '/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/tmp/issue-547/DerivedData/Build/Intermediates.noindex/ReactTestApp.build/Debug-iphonesimulator/ReactTestApp.build/Script-13F8F792F719AC06E4486381.sh' + +note: Removed stale file '/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/tmp/issue-547/DerivedData/Build/Intermediates.noindex/ReactTestApp.build/Debug-iphonesimulator/ReactTestApp.build/Script-36DEB1A5AB8B4B21CD6EAED4.sh' + +note: Removed stale file '/Users/thiagobrez/.codex/worktrees/08e2/react-native-bottom-tabs/tmp/issue-547/DerivedData/Build/Intermediates.noindex/ReactTestApp.build/Debug-iphonesimulator/ReactTestApp.build/Script-E8CBB229F96C6144FA313E04.sh' + +note: Run script build phase 'Generate `ip.txt`' will be run during every build because the option to run the script phase "Based on dependency analysis" is unchecked. (in target 'ReactTestApp' from project 'ReactTestApp') +note: Run script build phase 'Embed Manifest' will be run during every build because the option to run the script phase "Based on dependency analysis" is unchecked. (in target 'ReactTestApp' from project 'ReactTestApp') diff --git a/artifacts/issue-547/after/screenshots/contacts-loaded.png b/artifacts/issue-547/after/screenshots/contacts-loaded.png new file mode 100644 index 00000000..63059db5 Binary files /dev/null and b/artifacts/issue-547/after/screenshots/contacts-loaded.png differ diff --git a/artifacts/issue-547/after/screenshots/contacts-transition-contact-sheet.png b/artifacts/issue-547/after/screenshots/contacts-transition-contact-sheet.png new file mode 100644 index 00000000..7bcd69fb Binary files /dev/null and b/artifacts/issue-547/after/screenshots/contacts-transition-contact-sheet.png differ diff --git a/artifacts/issue-547/after/screenshots/dark-loaded.png b/artifacts/issue-547/after/screenshots/dark-loaded.png new file mode 100644 index 00000000..06ff2f8f Binary files /dev/null and b/artifacts/issue-547/after/screenshots/dark-loaded.png differ diff --git a/artifacts/issue-547/after/screenshots/dark-transition-contact-sheet.png b/artifacts/issue-547/after/screenshots/dark-transition-contact-sheet.png new file mode 100644 index 00000000..44e044e2 Binary files /dev/null and b/artifacts/issue-547/after/screenshots/dark-transition-contact-sheet.png differ diff --git a/artifacts/issue-547/after/screenshots/initial-article.png b/artifacts/issue-547/after/screenshots/initial-article.png new file mode 100644 index 00000000..18e255f3 Binary files /dev/null and b/artifacts/issue-547/after/screenshots/initial-article.png differ diff --git a/artifacts/issue-547/after/videos/first-lazy-contacts.gesture-telemetry.json b/artifacts/issue-547/after/videos/first-lazy-contacts.gesture-telemetry.json new file mode 100644 index 00000000..7aaf5f14 --- /dev/null +++ b/artifacts/issue-547/after/videos/first-lazy-contacts.gesture-telemetry.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "generatedAt": "2026-08-27T00:18:42.062Z", + "events": [ + { + "kind": "tap", + "tMs": 652.741455078125, + "x": 244, + "y": 822, + "referenceWidth": 402, + "referenceHeight": 874 + } + ] +} \ No newline at end of file diff --git a/artifacts/issue-547/after/videos/first-lazy-contacts.mp4 b/artifacts/issue-547/after/videos/first-lazy-contacts.mp4 new file mode 100644 index 00000000..bc81a8e7 Binary files /dev/null and b/artifacts/issue-547/after/videos/first-lazy-contacts.mp4 differ diff --git a/artifacts/issue-547/after/videos/first-lazy-dark.gesture-telemetry.json b/artifacts/issue-547/after/videos/first-lazy-dark.gesture-telemetry.json new file mode 100644 index 00000000..2258c850 --- /dev/null +++ b/artifacts/issue-547/after/videos/first-lazy-dark.gesture-telemetry.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "generatedAt": "2026-08-27T00:18:57.340Z", + "events": [ + { + "kind": "tap", + "tMs": 644.507568359375, + "x": 330, + "y": 822, + "referenceWidth": 402, + "referenceHeight": 874 + } + ] +} \ No newline at end of file diff --git a/artifacts/issue-547/after/videos/first-lazy-dark.mp4 b/artifacts/issue-547/after/videos/first-lazy-dark.mp4 new file mode 100644 index 00000000..a88576ce Binary files /dev/null and b/artifacts/issue-547/after/videos/first-lazy-dark.mp4 differ diff --git a/artifacts/issue-547/before/logs/app.log b/artifacts/issue-547/before/logs/app.log new file mode 100644 index 00000000..10a28287 --- /dev/null +++ b/artifacts/issue-547/before/logs/app.log @@ -0,0 +1,4060 @@ +[agent-device][mark][2026-08-27T00:08:25.359Z] before 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:08:36.352 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received request to fetch matches for query: +2026-08-27 01:08:36.352 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Evaluating query: +2026-08-27 01:08:36.352 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:36.352 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query +2026-08-27 01:08:36.352 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes . +2026-08-27 01:08:36.352 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.352 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.352 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.352 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.352 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.353 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:36.353 Df ReactTestApp[64575:8728df6] [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:08:36.353 Df ReactTestApp[64575:8728df6] [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:08:36.353 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:36.380 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:36.380 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:36.380 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:36.380 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:36.380 Df ReactTestApp[64575:87298d6] [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:08:36.381 Df ReactTestApp[64575:87298d6] [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:08:36.381 Df ReactTestApp[64575:87298d6] [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:08:36.381 Df ReactTestApp[64575:87298d6] [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:08:36.381 Df ReactTestApp[64575:87298d6] [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:08:36.381 Df ReactTestApp[64575:87298d6] [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:08:36.381 Df ReactTestApp[64575:87298d6] [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:08:36.381 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query found matching snapshots: {( + Application, pid: 64575 +)} (error: (null)) +2026-08-27 01:08:36.382 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying to query with results: (error: (null)) +2026-08-27 01:08:36.383 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received attributes request for element: App element pid: 64575. Attributes: ( + "XC_kAXXCAttributeFrame", + "XC_kAXXCAttributeWindowDisplayId", + "XC_kAXXCAttributeWindowContextId" +) +2026-08-27 01:08:36.383 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.383 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.383 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.383 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.383 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.383 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeFrame, XC_kAXXCAttributeWindowDisplayId, XC_kAXXCAttributeWindowContextId for App element pid: 64575 +2026-08-27 01:08:36.383 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:36.383 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeFrame" = { + Height = 874; + Width = 402; + X = 0; + Y = 0; + }; + "XC_kAXXCAttributeWindowContextId" = 1635110261; + "XC_kAXXCAttributeWindowDisplayId" = 0; +} +2026-08-27 01:08:36.385 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] Received request to fetch matches for query: +2026-08-27 01:08:36.385 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] Evaluating query: +2026-08-27 01:08:36.385 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:36.385 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query +2026-08-27 01:08:36.385 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes . +2026-08-27 01:08:36.385 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.385 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.385 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.385 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.385 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:36.385 Df ReactTestApp[64575:8728df6] [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:08:36.386 Df ReactTestApp[64575:8728df6] [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:08:36.386 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:36.386 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.414 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:36.414 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:36.414 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:36.414 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:36.414 Df ReactTestApp[64575:872953f] [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:08:36.415 Df ReactTestApp[64575:872953f] [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:08:36.415 Df ReactTestApp[64575:872953f] [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:08:36.415 Df ReactTestApp[64575:872953f] [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:08:36.415 Df ReactTestApp[64575:872953f] [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:08:36.415 Df ReactTestApp[64575:872953f] [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:08:36.415 Df ReactTestApp[64575:872953f] [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:08:36.415 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] Query found matching snapshots: {( + Application, pid: 64575 +)} (error: (null)) +2026-08-27 01:08:36.416 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] Replying to query with results: (error: (null)) +2026-08-27 01:08:36.465 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] Received request to fetch matches for query: +2026-08-27 01:08:36.465 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Evaluating query: +2026-08-27 01:08:36.465 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:36.465 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query +2026-08-27 01:08:36.465 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes . +2026-08-27 01:08:36.465 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.465 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.465 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.465 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.465 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.466 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:36.466 Df ReactTestApp[64575:8728df6] [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:08:36.466 Df ReactTestApp[64575:8728df6] [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:08:36.466 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:36.493 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:36.493 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:36.493 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:36.493 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:36.493 Df ReactTestApp[64575:87298d6] [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:08:36.494 Df ReactTestApp[64575:87298d6] [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:08:36.494 Df ReactTestApp[64575:87298d6] [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:08:36.494 Df ReactTestApp[64575:87298d6] [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:08:36.494 Df ReactTestApp[64575:87298d6] [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:08:36.494 Df ReactTestApp[64575:87298d6] [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:08:36.494 Df ReactTestApp[64575:87298d6] [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:08:36.495 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query found matching snapshots: {( + Application, pid: 64575 +)} (error: (null)) +2026-08-27 01:08:36.495 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying to query with results: (error: (null)) +2026-08-27 01:08:36.496 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received attributes request for element: App element pid: 64575. Attributes: ( + "XC_kAXXCAttributeFrame", + "XC_kAXXCAttributeWindowDisplayId", + "XC_kAXXCAttributeWindowContextId" +) +2026-08-27 01:08:36.496 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.496 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.496 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.496 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.496 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.496 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeFrame, XC_kAXXCAttributeWindowDisplayId, XC_kAXXCAttributeWindowContextId for App element pid: 64575 +2026-08-27 01:08:36.496 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:36.496 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeFrame" = { + Height = 874; + Width = 402; + X = 0; + Y = 0; + }; + "XC_kAXXCAttributeWindowContextId" = 1635110261; + "XC_kAXXCAttributeWindowDisplayId" = 0; +} +2026-08-27 01:08:36.500 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Button +2026-08-27 01:08:36.500 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Button +2026-08-27 01:08:36.500 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:36.500 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type Button +2026-08-27 01:08:36.500 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:36.500 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.500 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.500 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.500 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.500 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.500 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:36.500 Df ReactTestApp[64575:8728df6] [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:08:36.500 Df ReactTestApp[64575:8728df6] [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:08:36.500 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:36.528 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:36.528 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:36.528 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:36.528 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:36.528 Df ReactTestApp[64575:87298d6] [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:08:36.529 Df ReactTestApp[64575:87298d6] [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:08:36.529 Df ReactTestApp[64575:87298d6] [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:08:36.529 Df ReactTestApp[64575:87298d6] [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:08:36.529 Df ReactTestApp[64575:87298d6] [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:08:36.529 Df ReactTestApp[64575:87298d6] [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:08:36.529 Df ReactTestApp[64575:87298d6] [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:08:36.529 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.529 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.529 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.529 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.529 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.529 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:36.530 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type Button +2026-08-27 01:08:36.531 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Button` to input {( + Application, pid: 64575 +)}, found {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)} +2026-08-27 01:08:36.531 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:08:36.535 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Current tree: +Application, 0x1181e9d40, pid: 64575 + Window (Main), 0x1181bc440 + Other, 0x11818a4c0 + Other, 0x10d181f40 + Other, 0x10d1814c0 + Other, 0x10d1631c0 + Other, 0x119c31fc0 + Other, 0x118105bc0 + Other, 0x118104fc0 + Other, 0x119c30340 + Other, 0x108d23740 + Navigat<…> +2026-08-27 01:08:36.535 Df ReactTestApp[64575:87298d6] [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:08:36.536 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Button with results: (error: (null)) +2026-08-27 01:08:36.542 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Link +2026-08-27 01:08:36.542 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Link +2026-08-27 01:08:36.542 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:36.542 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type Link +2026-08-27 01:08:36.542 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:36.542 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.542 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.542 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.542 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.542 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.542 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:36.542 Df ReactTestApp[64575:8728df6] [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:08:36.542 Df ReactTestApp[64575:8728df6] [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:08:36.542 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:36.569 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:36.569 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:36.569 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:36.570 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:36.570 Df ReactTestApp[64575:87298d6] [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:08:36.570 Df ReactTestApp[64575:87298d6] [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:08:36.570 Df ReactTestApp[64575:87298d6] [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:08:36.570 Df ReactTestApp[64575:87298d6] [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:08:36.570 Df ReactTestApp[64575:87298d6] [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:08:36.570 Df ReactTestApp[64575:87298d6] [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:08:36.570 Df ReactTestApp[64575:87298d6] [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:08:36.571 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.571 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.571 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.571 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.571 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:36.571 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.571 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type Link +2026-08-27 01:08:36.571 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Link` to input {( + Application, pid: 64575 +)}, found {( +)} +2026-08-27 01:08:36.571 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {( +)} +2026-08-27 01:08:36.575 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Current tree: +Application, 0x108d235c0, pid: 64575 + Window (Main), 0x108d19fc0 + Other, 0x11817a140 + Other, 0x108d199c0 + Other, 0x108df6940 + Other, 0x110b87040 + Other, 0x110b72940 + Other, 0x110b916c0 + Other, 0x108d1c240 + Other, 0x108d1bc40 + Other, 0x11a5d1440 + Navigat<…> +2026-08-27 01:08:36.575 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Link found matching snapshots: {( +)} (error: (null)) +2026-08-27 01:08:36.575 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Link with results: (error: (null)) +2026-08-27 01:08:36.578 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type TextField +2026-08-27 01:08:36.578 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type TextField +2026-08-27 01:08:36.578 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:36.578 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type TextField +2026-08-27 01:08:36.578 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:36.578 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.578 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.578 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.578 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.578 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.578 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:36.578 Df ReactTestApp[64575:8728df6] [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:08:36.578 Df ReactTestApp[64575:8728df6] [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:08:36.578 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:36.605 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:36.605 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:36.605 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:36.605 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:36.605 Df ReactTestApp[64575:87298d6] [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:08:36.605 Df ReactTestApp[64575:87298d6] [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:08:36.605 Df ReactTestApp[64575:87298d6] [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:08:36.606 Df ReactTestApp[64575:87298d6] [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:08:36.606 Df ReactTestApp[64575:87298d6] [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:08:36.606 Df ReactTestApp[64575:87298d6] [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:08:36.606 Df ReactTestApp[64575:87298d6] [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:08:36.606 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.606 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.606 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.606 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.606 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.606 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:36.606 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type TextField +2026-08-27 01:08:36.606 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type TextField` to input {( + Application, pid: 64575 +)}, found {( +)} +2026-08-27 01:08:36.607 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {( +)} +2026-08-27 01:08:36.610 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Current tree: +Application, 0x110bbf440, pid: 64575 + Window (Main), 0x110b862c0 + Other, 0x1181eeb40 + Other, 0x110b38140 + Other, 0x119ccdcc0 + Other, 0x108d23440 + Other, 0x119c3cac0 + Other, 0x11a03db40 + Other, 0x110b2b3c0 + Other, 0x110b2b240 + Other, 0x11810fac0 + Navigat<…> +2026-08-27 01:08:36.610 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type TextField found matching snapshots: {( +)} (error: (null)) +2026-08-27 01:08:36.610 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type TextField with results: (error: (null)) +2026-08-27 01:08:36.613 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type SecureTextField +2026-08-27 01:08:36.613 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type SecureTextField +2026-08-27 01:08:36.613 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:36.613 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type SecureTextField +2026-08-27 01:08:36.613 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:36.613 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.613 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.613 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.613 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.613 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.614 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:36.614 Df ReactTestApp[64575:8728df6] [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:08:36.614 Df ReactTestApp[64575:8728df6] [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:08:36.614 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:36.640 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:36.640 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:36.640 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:36.640 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:36.641 Df ReactTestApp[64575:87298d6] [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:08:36.641 Df ReactTestApp[64575:87298d6] [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:08:36.641 Df ReactTestApp[64575:87298d6] [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:08:36.641 Df ReactTestApp[64575:87298d6] [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:08:36.641 Df ReactTestApp[64575:87298d6] [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:08:36.641 Df ReactTestApp[64575:87298d6] [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:08:36.641 Df ReactTestApp[64575:87298d6] [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:08:36.642 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.642 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.642 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.642 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.642 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.642 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:36.642 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type SecureTextField +2026-08-27 01:08:36.642 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type SecureTextField` to input {( + Application, pid: 64575 +)}, found {( +)} +2026-08-27 01:08:36.642 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {( +)} +2026-08-27 01:08:36.646 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Current tree: +Application, 0x11a0295c0, pid: 64575 + Window (Main), 0x118162ec0 + Other, 0x10d151640 + Other, 0x10d189a40 + Other, 0x1181646c0 + Other, 0x119c2c140 + Other, 0x110b43e40 + Other, 0x119c4ef40 + Other, 0x118164cc0 + Other, 0x1181652c0 + Other, 0x11816b5c0 + Navigat<…> +2026-08-27 01:08:36.646 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type SecureTextField found matching snapshots: {( +)} (error: (null)) +2026-08-27 01:08:36.646 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type SecureTextField with results: (error: (null)) +2026-08-27 01:08:36.648 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type SearchField +2026-08-27 01:08:36.648 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type SearchField +2026-08-27 01:08:36.648 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:36.648 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type SearchField +2026-08-27 01:08:36.648 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:36.649 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.649 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.649 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.649 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.649 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.649 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:36.649 Df ReactTestApp[64575:8728df6] [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:08:36.649 Df ReactTestApp[64575:8728df6] [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:08:36.649 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:36.675 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:36.675 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:36.675 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:36.675 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:36.675 Df ReactTestApp[64575:87298d6] [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:08:36.676 Df ReactTestApp[64575:87298d6] [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:08:36.676 Df ReactTestApp[64575:87298d6] [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:08:36.676 Df ReactTestApp[64575:87298d6] [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:08:36.676 Df ReactTestApp[64575:87298d6] [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:08:36.676 Df ReactTestApp[64575:87298d6] [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:08:36.676 Df ReactTestApp[64575:87298d6] [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:08:36.676 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.676 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.676 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.676 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.676 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.676 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:36.677 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type SearchField +2026-08-27 01:08:36.677 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type SearchField` to input {( + Application, pid: 64575 +)}, found {( +)} +2026-08-27 01:08:36.677 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {( +)} +2026-08-27 01:08:36.680 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Current tree: +Application, 0x119c049c0, pid: 64575 + Window (Main), 0x1181979c0 + Other, 0x118172340 + Other, 0x11a5583c0 + Other, 0x11a56eec0 + Other, 0x119c073c0 + Other, 0x119cd36c0 + Other, 0x119c007c0 + Other, 0x10d12a040 + Other, 0x108d28b40 + Other, 0x1181661c0 + Navigat<…> +2026-08-27 01:08:36.680 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type SearchField found matching snapshots: {( +)} (error: (null)) +2026-08-27 01:08:36.680 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type SearchField with results: (error: (null)) +2026-08-27 01:08:36.683 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type TextView +2026-08-27 01:08:36.683 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type TextView +2026-08-27 01:08:36.683 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:36.683 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type TextView +2026-08-27 01:08:36.683 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:36.683 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.683 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.683 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.683 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.683 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.683 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:36.684 Df ReactTestApp[64575:8728df6] [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:08:36.684 Df ReactTestApp[64575:8728df6] [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:08:36.684 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:36.712 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:36.712 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:36.712 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:36.712 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:36.712 Df ReactTestApp[64575:872953f] [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:08:36.712 Df ReactTestApp[64575:872953f] [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:08:36.713 Df ReactTestApp[64575:872953f] [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:08:36.713 Df ReactTestApp[64575:872953f] [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:08:36.713 Df ReactTestApp[64575:872953f] [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:08:36.713 Df ReactTestApp[64575:872953f] [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:08:36.713 Df ReactTestApp[64575:872953f] [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:08:36.713 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.713 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.713 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.713 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.713 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.713 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:36.713 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type TextView +2026-08-27 01:08:36.713 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type TextView` to input {( + Application, pid: 64575 +)}, found {( +)} +2026-08-27 01:08:36.714 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {( +)} +2026-08-27 01:08:36.717 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] Current tree: +Application, 0x110b42dc0, pid: 64575 + Window (Main), 0x119c0c640 + Other, 0x110b35ec0 + Other, 0x110a982c0 + Other, 0x110b92740 + Other, 0x108d1fb40 + Other, 0x110a98a40 + Other, 0x110a97cc0 + Other, 0x110a97540 + Other, 0x119c3a9c0 + Other, 0x108d757c0 + Navigat<…> +2026-08-27 01:08:36.717 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type TextView found matching snapshots: {( +)} (error: (null)) +2026-08-27 01:08:36.717 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type TextView with results: (error: (null)) +2026-08-27 01:08:36.720 Df ReactTestApp[64575:872953f] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Switch +2026-08-27 01:08:36.720 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Switch +2026-08-27 01:08:36.720 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:36.720 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type Switch +2026-08-27 01:08:36.720 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:36.720 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.720 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.720 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.720 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.720 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.720 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:36.721 Df ReactTestApp[64575:8728df6] [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:08:36.721 Df ReactTestApp[64575:8728df6] [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:08:36.721 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:36.747 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:36.747 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:36.747 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:36.747 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:36.747 Df ReactTestApp[64575:87298d6] [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:08:36.748 Df ReactTestApp[64575:87298d6] [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:08:36.748 Df ReactTestApp[64575:87298d6] [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:08:36.748 Df ReactTestApp[64575:87298d6] [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:08:36.748 Df ReactTestApp[64575:87298d6] [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:08:36.748 Df ReactTestApp[64575:87298d6] [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:08:36.748 Df ReactTestApp[64575:87298d6] [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:08:36.749 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.749 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.749 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.749 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.749 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:36.749 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.749 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type Switch +2026-08-27 01:08:36.749 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Switch` to input {( + Application, pid: 64575 +)}, found {( +)} +2026-08-27 01:08:36.749 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {( +)} +2026-08-27 01:08:36.753 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Current tree: +Application, 0x110b7c540, pid: 64575 + Window (Main), 0x110b907c0 + Other, 0x110b9a3c0 + Other, 0x119c229c0 + Other, 0x108d29740 + Other, 0x110b7c0c0 + Other, 0x110b8d640 + Other, 0x110b7bdc0 + Other, 0x108d75940 + Other, 0x110b7b1c0 + Other, 0x110b7b4c0 + Navigat<…> +2026-08-27 01:08:36.753 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Switch found matching snapshots: {( +)} (error: (null)) +2026-08-27 01:08:36.753 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Switch with results: (error: (null)) +2026-08-27 01:08:36.755 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Slider +2026-08-27 01:08:36.755 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Slider +2026-08-27 01:08:36.755 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:36.755 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type Slider +2026-08-27 01:08:36.755 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:36.755 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.755 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.755 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.755 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.755 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.756 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:36.756 Df ReactTestApp[64575:8728df6] [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:08:36.756 Df ReactTestApp[64575:8728df6] [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:08:36.756 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:36.782 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:36.782 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:36.782 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:36.783 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:36.783 Df ReactTestApp[64575:87298d6] [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:08:36.783 Df ReactTestApp[64575:87298d6] [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:08:36.783 Df ReactTestApp[64575:87298d6] [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:08:36.783 Df ReactTestApp[64575:87298d6] [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:08:36.783 Df ReactTestApp[64575:87298d6] [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:08:36.783 Df ReactTestApp[64575:87298d6] [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:08:36.783 Df ReactTestApp[64575:87298d6] [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:08:36.784 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.784 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.784 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.784 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.784 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.784 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:36.784 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type Slider +2026-08-27 01:08:36.784 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Slider` to input {( + Application, pid: 64575 +)}, found {( +)} +2026-08-27 01:08:36.784 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {( +)} +2026-08-27 01:08:36.788 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Current tree: +Application, 0x118178640, pid: 64575 + Window (Main), 0x118171740 + Other, 0x119c352c0 + Other, 0x11a04ef40 + Other, 0x119c47d40 + Other, 0x1181bcbc0 + Other, 0x11816bbc0 + Other, 0x11816c1c0 + Other, 0x10d1928c0 + Other, 0x119c32740 + Other, 0x11a5607c0 + Navigat<…> +2026-08-27 01:08:36.788 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Slider found matching snapshots: {( +)} (error: (null)) +2026-08-27 01:08:36.788 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Slider with results: (error: (null)) +2026-08-27 01:08:36.790 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type SegmentedControl +2026-08-27 01:08:36.790 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type SegmentedControl +2026-08-27 01:08:36.790 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:36.790 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type SegmentedControl +2026-08-27 01:08:36.790 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:36.791 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.791 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.791 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.791 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.791 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.791 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:36.791 Df ReactTestApp[64575:8728df6] [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:08:36.791 Df ReactTestApp[64575:8728df6] [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:08:36.791 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:36.817 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:36.817 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:36.817 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:36.817 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:36.817 Df ReactTestApp[64575:87298d6] [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:08:36.818 Df ReactTestApp[64575:87298d6] [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:08:36.818 Df ReactTestApp[64575:87298d6] [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:08:36.818 Df ReactTestApp[64575:87298d6] [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:08:36.818 Df ReactTestApp[64575:87298d6] [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:08:36.818 Df ReactTestApp[64575:87298d6] [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:08:36.818 Df ReactTestApp[64575:87298d6] [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:08:36.819 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.819 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.819 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.819 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.819 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.819 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:36.819 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type SegmentedControl +2026-08-27 01:08:36.819 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type SegmentedControl` to input {( + Application, pid: 64575 +)}, found {( +)} +2026-08-27 01:08:36.819 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {( +)} +2026-08-27 01:08:36.823 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Current tree: +Application, 0x11816c7c0, pid: 64575 + Window (Main), 0x119c05140 + Other, 0x119cedac0 + Other, 0x11813f940 + Other, 0x118139f40 + Other, 0x1181ab640 + Other, 0x110bfe140 + Other, 0x119c8c5c0 + Other, 0x11816cdc0 + Other, 0x11818a4c0 + Other, 0x118146b40 + Navigat<…> +2026-08-27 01:08:36.823 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type SegmentedControl found matching snapshots: {( +)} (error: (null)) +2026-08-27 01:08:36.823 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type SegmentedControl with results: (error: (null)) +2026-08-27 01:08:36.826 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Cell +2026-08-27 01:08:36.826 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Cell +2026-08-27 01:08:36.826 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:36.826 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type Cell +2026-08-27 01:08:36.826 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:36.826 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.826 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.826 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.826 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.826 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.826 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:36.826 Df ReactTestApp[64575:8728df6] [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:08:36.826 Df ReactTestApp[64575:8728df6] [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:08:36.826 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:36.855 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:36.855 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:36.855 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:36.855 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:36.855 Df ReactTestApp[64575:87298d6] [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:08:36.856 Df ReactTestApp[64575:87298d6] [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:08:36.856 Df ReactTestApp[64575:87298d6] [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:08:36.856 Df ReactTestApp[64575:87298d6] [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:08:36.856 Df ReactTestApp[64575:87298d6] [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:08:36.856 Df ReactTestApp[64575:87298d6] [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:08:36.856 Df ReactTestApp[64575:87298d6] [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:08:36.856 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.856 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.856 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.856 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.856 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.856 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:36.856 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type Cell +2026-08-27 01:08:36.857 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Cell` to input {( + Application, pid: 64575 +)}, found {( +)} +2026-08-27 01:08:36.857 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {( +)} +2026-08-27 01:08:36.860 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Current tree: +Application, 0x110b835c0, pid: 64575 + Window (Main), 0x1181898c0 + Other, 0x110b36940 + Other, 0x110b95a40 + Other, 0x110b84340 + Other, 0x1181dedc0 + Other, 0x110b83d40 + Other, 0x110b7e340 + Other, 0x110b856c0 + Other, 0x110b85540 + Other, 0x110b5efc0 + Navigat<…> +2026-08-27 01:08:36.861 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Cell found matching snapshots: {( +)} (error: (null)) +2026-08-27 01:08:36.861 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Cell with results: (error: (null)) +2026-08-27 01:08:36.863 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type CollectionView +2026-08-27 01:08:36.863 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type CollectionView +2026-08-27 01:08:36.863 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:36.863 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type CollectionView +2026-08-27 01:08:36.863 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:36.863 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.863 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.863 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.863 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.863 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.864 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:36.864 Df ReactTestApp[64575:8728df6] [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:08:36.864 Df ReactTestApp[64575:8728df6] [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:08:36.864 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:36.893 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:36.894 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:36.894 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:36.894 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:36.894 Df ReactTestApp[64575:87298d6] [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:08:36.894 Df ReactTestApp[64575:87298d6] [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:08:36.894 Df ReactTestApp[64575:87298d6] [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:08:36.895 Df ReactTestApp[64575:87298d6] [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:08:36.895 Df ReactTestApp[64575:87298d6] [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:08:36.895 Df ReactTestApp[64575:87298d6] [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:08:36.895 Df ReactTestApp[64575:87298d6] [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:08:36.895 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.895 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.895 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.895 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.895 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.895 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:36.895 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type CollectionView +2026-08-27 01:08:36.895 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type CollectionView` to input {( + Application, pid: 64575 +)}, found {( +)} +2026-08-27 01:08:36.896 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {( +)} +2026-08-27 01:08:36.899 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Current tree: +Application, 0x110bf6040, pid: 64575 + Window (Main), 0x110bca6c0 + Other, 0x110be05c0 + Other, 0x11a083140 + Other, 0x110bf5740 + Other, 0x110bca0c0 + Other, 0x110be02c0 + Other, 0x1181394c0 + Other, 0x110a9a540 + Other, 0x118116840 + Other, 0x110baffc0 + Navigat<…> +2026-08-27 01:08:36.899 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type CollectionView found matching snapshots: {( +)} (error: (null)) +2026-08-27 01:08:36.899 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type CollectionView with results: (error: (null)) +2026-08-27 01:08:36.902 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Table +2026-08-27 01:08:36.902 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Table +2026-08-27 01:08:36.902 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:36.902 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type Table +2026-08-27 01:08:36.902 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:36.902 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.902 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.902 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.902 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.902 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.902 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:36.903 Df ReactTestApp[64575:8728df6] [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:08:36.903 Df ReactTestApp[64575:8728df6] [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:08:36.903 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:36.930 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:36.930 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:36.930 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:36.930 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:36.930 Df ReactTestApp[64575:87298d6] [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:08:36.931 Df ReactTestApp[64575:87298d6] [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:08:36.931 Df ReactTestApp[64575:87298d6] [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:08:36.931 Df ReactTestApp[64575:87298d6] [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:08:36.931 Df ReactTestApp[64575:87298d6] [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:08:36.931 Df ReactTestApp[64575:87298d6] [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:08:36.931 Df ReactTestApp[64575:87298d6] [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:08:36.931 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.931 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.931 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.931 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.931 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.931 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:36.931 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type Table +2026-08-27 01:08:36.932 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Table` to input {( + Application, pid: 64575 +)}, found {( +)} +2026-08-27 01:08:36.932 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {( +)} +2026-08-27 01:08:36.935 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Current tree: +Application, 0x11816c640, pid: 64575 + Window (Main), 0x11810e8c0 + Other, 0x11a57edc0 + Other, 0x11a57e640 + Other, 0x1181fb5c0 + Other, 0x11819e740 + Other, 0x11811c840 + Other, 0x110b9e5c0 + Other, 0x118149fc0 + Other, 0x1181a87c0 + Other, 0x11a0292c0 + Navigat<…> +2026-08-27 01:08:36.935 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Table found matching snapshots: {( +)} (error: (null)) +2026-08-27 01:08:36.935 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Table with results: (error: (null)) +2026-08-27 01:08:36.938 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type ScrollView +2026-08-27 01:08:36.938 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type ScrollView +2026-08-27 01:08:36.938 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:36.938 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type ScrollView +2026-08-27 01:08:36.938 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:36.938 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.938 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.938 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.938 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.938 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.938 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:36.938 Df ReactTestApp[64575:8728df6] [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:08:36.938 Df ReactTestApp[64575:8728df6] [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:08:36.938 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:36.964 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:36.964 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:36.964 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:36.964 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:36.964 Df ReactTestApp[64575:87298d6] [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:08:36.965 Df ReactTestApp[64575:87298d6] [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:08:36.965 Df ReactTestApp[64575:87298d6] [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:08:36.965 Df ReactTestApp[64575:87298d6] [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:08:36.965 Df ReactTestApp[64575:87298d6] [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:08:36.965 Df ReactTestApp[64575:87298d6] [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:08:36.966 Df ReactTestApp[64575:87298d6] [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:08:36.966 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.966 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.966 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.966 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.966 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:36.966 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.966 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type ScrollView +2026-08-27 01:08:36.966 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type ScrollView` to input {( + Application, pid: 64575 +)}, found {( + ScrollView +)} +2026-08-27 01:08:36.966 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:08:36.970 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Current tree: +Application, 0x11813c940, pid: 64575 + Window (Main), 0x110beca40 + Other, 0x110bc3340 + Other, 0x119ccc340 + Other, 0x1181c6640 + Other, 0x119c1aa40 + Other, 0x11083b440 + Other, 0x119ce02c0 + Other, 0x110bc04c0 + Other, 0x119c193c0 + Other, 0x1181649c0 + Navigat<…> +2026-08-27 01:08:36.970 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type ScrollView found matching snapshots: {( + ScrollView +)} (error: (null)) +2026-08-27 01:08:36.970 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type ScrollView with results: (error: (null)) +2026-08-27 01:08:36.973 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Picker +2026-08-27 01:08:36.973 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Picker +2026-08-27 01:08:36.973 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:36.973 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type Picker +2026-08-27 01:08:36.973 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:36.973 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:36.973 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:36.973 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:36.974 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:36.974 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:36.974 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:36.974 Df ReactTestApp[64575:8728df6] [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:08:36.974 Df ReactTestApp[64575:8728df6] [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:08:36.974 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:36.999 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:36.999 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:36.999 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:36.999 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:36.999 Df ReactTestApp[64575:87298d6] [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:08:37.000 Df ReactTestApp[64575:87298d6] [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:08:37.000 Df ReactTestApp[64575:87298d6] [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:08:37.000 Df ReactTestApp[64575:87298d6] [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:08:37.000 Df ReactTestApp[64575:87298d6] [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:08:37.000 Df ReactTestApp[64575:87298d6] [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:08:37.000 Df ReactTestApp[64575:87298d6] [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:08:37.000 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.000 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.000 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.000 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.001 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.001 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:37.001 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type Picker +2026-08-27 01:08:37.001 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Picker` to input {( + Application, pid: 64575 +)}, found {( +)} +2026-08-27 01:08:37.001 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {( +)} +2026-08-27 01:08:37.004 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Current tree: +Application, 0x110bb5840, pid: 64575 + Window (Main), 0x118145940 + Other, 0x110b70240 + Other, 0x110bba940 + Other, 0x1181c7fc0 + Other, 0x119c0cf40 + Other, 0x1181796c0 + Other, 0x10d171a40 + Other, 0x1181c5740 + Other, 0x1181fafc0 + Other, 0x119c0c040 + Navigat<…> +2026-08-27 01:08:37.004 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Picker found matching snapshots: {( +)} (error: (null)) +2026-08-27 01:08:37.004 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Picker with results: (error: (null)) +2026-08-27 01:08:37.007 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Stepper +2026-08-27 01:08:37.007 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Stepper +2026-08-27 01:08:37.007 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:37.007 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type Stepper +2026-08-27 01:08:37.007 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:37.007 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.007 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.007 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.007 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.007 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.007 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:37.007 Df ReactTestApp[64575:8728df6] [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:08:37.007 Df ReactTestApp[64575:8728df6] [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:08:37.007 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:37.034 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:37.034 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:37.034 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:37.034 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:37.034 Df ReactTestApp[64575:87298d6] [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:08:37.035 Df ReactTestApp[64575:87298d6] [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:08:37.035 Df ReactTestApp[64575:87298d6] [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:08:37.035 Df ReactTestApp[64575:87298d6] [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:08:37.035 Df ReactTestApp[64575:87298d6] [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:08:37.035 Df ReactTestApp[64575:87298d6] [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:08:37.035 Df ReactTestApp[64575:87298d6] [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:08:37.035 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.035 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.035 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.036 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.036 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.036 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:37.036 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type Stepper +2026-08-27 01:08:37.036 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Stepper` to input {( + Application, pid: 64575 +)}, found {( +)} +2026-08-27 01:08:37.036 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {( +)} +2026-08-27 01:08:37.040 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Current tree: +Application, 0x110bed4c0, pid: 64575 + Window (Main), 0x118157ac0 + Other, 0x10d18e9c0 + Other, 0x110beb0c0 + Other, 0x11a02d940 + Other, 0x108d29440 + Other, 0x110ba0b40 + Other, 0x11a581640 + Other, 0x110b92ec0 + Other, 0x110ba1140 + Other, 0x110b9fac0 + Navigat<…> +2026-08-27 01:08:37.040 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Stepper found matching snapshots: {( +)} (error: (null)) +2026-08-27 01:08:37.040 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Stepper with results: (error: (null)) +2026-08-27 01:08:37.043 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type TabBar +2026-08-27 01:08:37.043 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type TabBar +2026-08-27 01:08:37.043 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:37.043 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type TabBar +2026-08-27 01:08:37.043 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:37.043 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.043 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.043 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.043 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.043 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.043 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:37.043 Df ReactTestApp[64575:8728df6] [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:08:37.043 Df ReactTestApp[64575:8728df6] [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:08:37.043 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:37.071 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:37.071 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:37.071 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:37.071 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:37.071 Df ReactTestApp[64575:87298d6] [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:08:37.072 Df ReactTestApp[64575:87298d6] [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:08:37.072 Df ReactTestApp[64575:87298d6] [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:08:37.072 Df ReactTestApp[64575:87298d6] [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:08:37.072 Df ReactTestApp[64575:87298d6] [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:08:37.072 Df ReactTestApp[64575:87298d6] [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:08:37.072 Df ReactTestApp[64575:87298d6] [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:08:37.072 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.072 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.072 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.072 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.072 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.072 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:37.072 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type TabBar +2026-08-27 01:08:37.073 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type TabBar` to input {( + Application, pid: 64575 +)}, found {( + TabBar +)} +2026-08-27 01:08:37.073 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:08:37.076 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Current tree: +Application, 0x110b9f1c0, pid: 64575 + Window (Main), 0x118145dc0 + Other, 0x110baa140 + Other, 0x118145f40 + Other, 0x11a576240 + Other, 0x11813fac0 + Other, 0x110baaec0 + Other, 0x118105a40 + Other, 0x110b6cf40 + Other, 0x110b6c1c0 + Other, 0x119cdedc0 + Navigat<…> +2026-08-27 01:08:37.076 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type TabBar found matching snapshots: {( + TabBar +)} (error: (null)) +2026-08-27 01:08:37.076 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type TabBar with results: (error: (null)) +2026-08-27 01:08:37.080 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type MenuItem +2026-08-27 01:08:37.080 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type MenuItem +2026-08-27 01:08:37.080 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:37.080 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type MenuItem +2026-08-27 01:08:37.080 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:37.080 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.080 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.080 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.080 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.080 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.081 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:37.081 Df ReactTestApp[64575:8728df6] [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:08:37.081 Df ReactTestApp[64575:8728df6] [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:08:37.081 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:37.106 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:37.107 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:37.107 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:37.107 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:37.107 Df ReactTestApp[64575:87298d5] [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:08:37.107 Df ReactTestApp[64575:87298d5] [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:08:37.107 Df ReactTestApp[64575:87298d5] [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:08:37.107 Df ReactTestApp[64575:87298d5] [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:08:37.108 Df ReactTestApp[64575:87298d5] [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:08:37.108 Df ReactTestApp[64575:87298d5] [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:08:37.108 Df ReactTestApp[64575:87298d5] [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:08:37.108 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.108 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.108 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.108 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.108 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.108 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:37.108 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type MenuItem +2026-08-27 01:08:37.108 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type MenuItem` to input {( + Application, pid: 64575 +)}, found {( +)} +2026-08-27 01:08:37.108 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {( +)} +2026-08-27 01:08:37.112 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Current tree: +Application, 0x119c26440, pid: 64575 + Window (Main), 0x119c25cc0 + Other, 0x119c25e40 + Other, 0x119c26140 + Other, 0x119c25fc0 + Other, 0x119c262c0 + Other, 0x110b62d40 + Other, 0x108d2ca40 + Other, 0x119c214c0 + Other, 0x11a56ab40 + Other, 0x11815b9c0 + Navigat<…> +2026-08-27 01:08:37.112 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type MenuItem found matching snapshots: {( +)} (error: (null)) +2026-08-27 01:08:37.112 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type MenuItem with results: (error: (null)) +2026-08-27 01:08:37.115 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type StaticText +2026-08-27 01:08:37.115 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type StaticText +2026-08-27 01:08:37.115 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:37.115 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type StaticText +2026-08-27 01:08:37.115 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:37.115 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.115 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.115 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.115 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.115 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.115 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:37.115 Df ReactTestApp[64575:8728df6] [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:08:37.116 Df ReactTestApp[64575:8728df6] [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:08:37.116 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:37.141 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:37.141 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:37.141 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:37.141 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:37.141 Df ReactTestApp[64575:87298d5] [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:08:37.142 Df ReactTestApp[64575:87298d5] [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:08:37.142 Df ReactTestApp[64575:87298d5] [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:08:37.142 Df ReactTestApp[64575:87298d5] [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:08:37.142 Df ReactTestApp[64575:87298d5] [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:08:37.142 Df ReactTestApp[64575:87298d5] [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:08:37.142 Df ReactTestApp[64575:87298d5] [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:08:37.142 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.142 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.142 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.142 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.142 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.142 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:37.143 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type StaticText +2026-08-27 01:08:37.143 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type StaticText` to input {( + Application, pid: 64575 +)}, found {( + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText +)} +2026-08-27 01:08:37.143 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:08:37.147 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Current tree: +Application, 0x11a584340, pid: 64575 + Window (Main), 0x110b7e340 + Other, 0x110b7ec40 + Other, 0x118173b40 + Other, 0x110b5efc0 + Other, 0x110b85540 + Other, 0x110b7fb40 + Other, 0x110b7b340 + Other, 0x110bddbc0 + Other, 0x110b24940 + Other, 0x10d175940 + Navigat<…> +2026-08-27 01:08:37.147 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type StaticText found matching snapshots: {( + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText, + StaticText +)} (error: (null)) +2026-08-27 01:08:37.154 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type StaticText with results: (error: (null)) +2026-08-27 01:08:37.159 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Image +2026-08-27 01:08:37.159 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Image +2026-08-27 01:08:37.159 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:37.159 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type Image +2026-08-27 01:08:37.159 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:37.159 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.159 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.159 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.159 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.159 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.160 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:37.160 Df ReactTestApp[64575:8728df6] [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:08:37.160 Df ReactTestApp[64575:8728df6] [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:08:37.160 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:37.185 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:37.185 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:37.185 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:37.185 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:37.186 Df ReactTestApp[64575:87298d5] [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:08:37.186 Df ReactTestApp[64575:87298d5] [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:08:37.186 Df ReactTestApp[64575:87298d5] [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:08:37.186 Df ReactTestApp[64575:87298d5] [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:08:37.186 Df ReactTestApp[64575:87298d5] [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:08:37.186 Df ReactTestApp[64575:87298d5] [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:08:37.186 Df ReactTestApp[64575:87298d5] [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:08:37.187 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.187 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.187 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.187 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.187 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:37.187 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.187 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type Image +2026-08-27 01:08:37.188 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Image` to input {( + Application, pid: 64575 +)}, found {( + Image, + Image +)} +2026-08-27 01:08:37.188 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:08:37.191 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Current tree: +Application, 0x110b8a940, pid: 64575 + Window (Main), 0x1181bb3c0 + Other, 0x1181c04c0 + Other, 0x110b8b0c0 + Other, 0x1181b92c0 + Other, 0x1181bc5c0 + Other, 0x119c84040 + Other, 0x1181ba4c0 + Other, 0x1181bbe40 + Other, 0x1181bb840 + Other, 0x11819c040 + Navigat<…> +2026-08-27 01:08:37.191 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Image found matching snapshots: {( + Image, + Image +)} (error: (null)) +2026-08-27 01:08:37.191 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Image with results: (error: (null)) +2026-08-27 01:08:37.194 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.194 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.194 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:37.194 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.194 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:37.194 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.194 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.194 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.194 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.194 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.194 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:37.195 Df ReactTestApp[64575:8728df6] [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:08:37.195 Df ReactTestApp[64575:8728df6] [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:08:37.195 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:37.220 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:37.220 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:37.220 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:37.220 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:37.221 Df ReactTestApp[64575:87298d5] [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:08:37.221 Df ReactTestApp[64575:87298d5] [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:08:37.221 Df ReactTestApp[64575:87298d5] [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:08:37.221 Df ReactTestApp[64575:87298d5] [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:08:37.221 Df ReactTestApp[64575:87298d5] [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:08:37.221 Df ReactTestApp[64575:87298d5] [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:08:37.221 Df ReactTestApp[64575:87298d5] [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:08:37.222 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.222 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.222 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.222 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.222 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.222 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:37.222 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.222 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Button` to input {( + Application, pid: 64575 +)}, found {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)} +2026-08-27 01:08:37.222 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] applied transformer `Element at index 0` to input {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)}, found {( + Button, identifier: 'BackButton' +)} +2026-08-27 01:08:37.222 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:08:37.226 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Current tree: +Application, 0x1181607c0, pid: 64575 + Window (Main), 0x119c1b4c0 + Other, 0x110bedac0 + Other, 0x110bec8c0 + Other, 0x110bce2c0 + Other, 0x110bec740 + Other, 0x110beddc0 + Other, 0x1181df540 + Other, 0x119c3d3c0 + Other, 0x1181d78c0 + Other, 0x11810b740 + Navigat<…> +2026-08-27 01:08:37.226 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 found matching snapshots: {( + Button, identifier: 'BackButton' +)} (error: (null)) +2026-08-27 01:08:37.226 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 with results: (error: (null)) +2026-08-27 01:08:37.228 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.228 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.228 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:37.228 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.228 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:37.228 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.228 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.228 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.228 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.228 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.229 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:37.229 Df ReactTestApp[64575:8728df6] [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:08:37.229 Df ReactTestApp[64575:8728df6] [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:08:37.229 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:37.254 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:37.254 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:37.254 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:37.255 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:37.255 Df ReactTestApp[64575:87298d5] [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:08:37.255 Df ReactTestApp[64575:87298d5] [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:08:37.255 Df ReactTestApp[64575:87298d5] [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:08:37.255 Df ReactTestApp[64575:87298d5] [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:08:37.255 Df ReactTestApp[64575:87298d5] [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:08:37.255 Df ReactTestApp[64575:87298d5] [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:08:37.255 Df ReactTestApp[64575:87298d5] [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:08:37.256 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.256 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.256 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.256 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.256 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.256 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:37.256 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.256 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Button` to input {( + Application, pid: 64575 +)}, found {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)} +2026-08-27 01:08:37.256 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] applied transformer `Element at index 0` to input {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)}, found {( + Button, identifier: 'BackButton' +)} +2026-08-27 01:08:37.256 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:08:37.260 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Current tree: +Application, 0x110b85b40, pid: 64575 + Window (Main), 0x110b83140 + Other, 0x119c22cc0 + Other, 0x110bed1c0 + Other, 0x110b39940 + Other, 0x110b2ecc0 + Other, 0x110b47bc0 + Other, 0x110bfd240 + Other, 0x119c01b40 + Other, 0x10d1691c0 + Other, 0x11816acc0 + Navigat<…> +2026-08-27 01:08:37.260 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 found matching snapshots: {( + Button, identifier: 'BackButton' +)} (error: (null)) +2026-08-27 01:08:37.260 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 with results: (error: (null)) +2026-08-27 01:08:37.262 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributeFrame", + "XC_kAXXCAttributeWindowDisplayId", + "XC_kAXXCAttributeWindowContextId" +) +2026-08-27 01:08:37.262 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.262 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.262 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.262 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.262 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.262 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeFrame, XC_kAXXCAttributeWindowDisplayId, XC_kAXXCAttributeWindowContextId for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.262 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.262 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeFrame" = { + Height = 44; + Width = 44; + X = 16; + Y = 62; + }; + "XC_kAXXCAttributeWindowContextId" = 1635110261; + "XC_kAXXCAttributeWindowDisplayId" = 1; +} +2026-08-27 01:08:37.266 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributeLabel" +) +2026-08-27 01:08:37.266 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.266 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.266 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.266 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.266 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.267 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeLabel for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.267 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.267 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Checking 'BottomTabs Example' for privileged AX value slot attributes +2026-08-27 01:08:37.267 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeLabel" = "BottomTabs Example"; +} +2026-08-27 01:08:37.268 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributeValue" +) +2026-08-27 01:08:37.268 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.268 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.268 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.268 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.268 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.268 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeValue for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.269 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.269 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:08:37.269 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributePlaceholderValue" +) +2026-08-27 01:08:37.270 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.270 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.270 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.270 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.270 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.270 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributePlaceholderValue for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.270 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.270 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:08:37.271 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.271 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.271 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:37.271 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.271 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:37.271 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.271 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.271 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.271 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.271 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.272 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:37.272 Df ReactTestApp[64575:8728df6] [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:08:37.272 Df ReactTestApp[64575:8728df6] [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:08:37.272 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:37.298 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:37.298 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:37.298 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:37.298 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:37.298 Df ReactTestApp[64575:87298d5] [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:08:37.299 Df ReactTestApp[64575:87298d5] [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:08:37.299 Df ReactTestApp[64575:87298d5] [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:08:37.299 Df ReactTestApp[64575:87298d5] [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:08:37.299 Df ReactTestApp[64575:87298d5] [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:08:37.299 Df ReactTestApp[64575:87298d5] [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:08:37.299 Df ReactTestApp[64575:87298d5] [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:08:37.300 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.300 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.300 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.300 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.300 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.300 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:37.300 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.300 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Button` to input {( + Application, pid: 64575 +)}, found {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)} +2026-08-27 01:08:37.300 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] applied transformer `Element at index 0` to input {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)}, found {( + Button, identifier: 'BackButton' +)} +2026-08-27 01:08:37.300 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:08:37.304 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Current tree: +Application, 0x110b922c0, pid: 64575 + Window (Main), 0x118117740 + Other, 0x118145940 + Other, 0x110bb5840 + Other, 0x10d117a40 + Other, 0x110b97e40 + Other, 0x1181796c0 + Other, 0x119c0cf40 + Other, 0x1181c7fc0 + Other, 0x110bba940 + Other, 0x11813de40 + Navigat<…> +2026-08-27 01:08:37.304 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 found matching snapshots: {( + Button, identifier: 'BackButton' +)} (error: (null)) +2026-08-27 01:08:37.304 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 with results: (error: (null)) +2026-08-27 01:08:37.306 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributeLabel" +) +2026-08-27 01:08:37.306 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.306 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.306 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.306 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.306 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.306 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeLabel for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.306 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.307 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Checking 'BottomTabs Example' for privileged AX value slot attributes +2026-08-27 01:08:37.307 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeLabel" = "BottomTabs Example"; +} +2026-08-27 01:08:37.308 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributeValue" +) +2026-08-27 01:08:37.308 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.308 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.308 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.308 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.308 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeValue for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.308 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.308 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.308 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:08:37.308 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributePlaceholderValue" +) +2026-08-27 01:08:37.308 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.308 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.308 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.308 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.308 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.308 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributePlaceholderValue for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.309 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.309 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:08:37.310 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.310 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.310 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:37.310 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.310 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:37.310 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.310 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.310 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.310 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.310 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.310 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:37.310 Df ReactTestApp[64575:8728df6] [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:08:37.311 Df ReactTestApp[64575:8728df6] [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:08:37.311 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:37.338 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:37.338 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:37.338 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:37.338 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:37.339 Df ReactTestApp[64575:87298d5] [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:08:37.339 Df ReactTestApp[64575:87298d5] [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:08:37.339 Df ReactTestApp[64575:87298d5] [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:08:37.339 Df ReactTestApp[64575:87298d5] [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:08:37.339 Df ReactTestApp[64575:87298d5] [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:08:37.339 Df ReactTestApp[64575:87298d5] [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:08:37.339 Df ReactTestApp[64575:87298d5] [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:08:37.340 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.340 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.340 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.340 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.340 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.340 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:37.340 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.340 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Button` to input {( + Application, pid: 64575 +)}, found {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)} +2026-08-27 01:08:37.340 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] applied transformer `Element at index 0` to input {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)}, found {( + Button, identifier: 'BackButton' +)} +2026-08-27 01:08:37.340 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:08:37.344 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Current tree: +Application, 0x110b92ec0, pid: 64575 + Window (Main), 0x1181b7040 + Other, 0x119c02440 + Other, 0x1181cba40 + Other, 0x108d601c0 + Other, 0x110bfd9c0 + Other, 0x1181469c0 + Other, 0x119c08a40 + Other, 0x119c03640 + Other, 0x10d11bdc0 + Other, 0x119c89ec0 + Navigat<…> +2026-08-27 01:08:37.344 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 found matching snapshots: {( + Button, identifier: 'BackButton' +)} (error: (null)) +2026-08-27 01:08:37.344 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 with results: (error: (null)) +2026-08-27 01:08:37.346 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributeLabel" +) +2026-08-27 01:08:37.346 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.346 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.346 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.346 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.346 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.346 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeLabel for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.346 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.346 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Checking 'BottomTabs Example' for privileged AX value slot attributes +2026-08-27 01:08:37.346 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeLabel" = "BottomTabs Example"; +} +2026-08-27 01:08:37.347 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributeValue" +) +2026-08-27 01:08:37.347 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.347 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.347 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.347 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.347 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeValue for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.347 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.347 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.347 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:08:37.348 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributePlaceholderValue" +) +2026-08-27 01:08:37.348 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.348 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.348 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.348 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.348 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.348 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributePlaceholderValue for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.348 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.348 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:08:37.349 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.349 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.349 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:37.350 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.350 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:37.350 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.350 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.350 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.350 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.350 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.350 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:37.350 Df ReactTestApp[64575:8728df6] [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:08:37.350 Df ReactTestApp[64575:8728df6] [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:08:37.350 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:37.377 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:37.377 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:37.377 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:37.377 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:37.377 Df ReactTestApp[64575:87298d6] [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:08:37.378 Df ReactTestApp[64575:87298d6] [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:08:37.378 Df ReactTestApp[64575:87298d6] [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:08:37.378 Df ReactTestApp[64575:87298d6] [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:08:37.378 Df ReactTestApp[64575:87298d6] [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:08:37.378 Df ReactTestApp[64575:87298d6] [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:08:37.378 Df ReactTestApp[64575:87298d6] [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:08:37.379 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.379 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.379 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.379 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.379 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.379 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:37.379 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.379 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Button` to input {( + Application, pid: 64575 +)}, found {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)} +2026-08-27 01:08:37.379 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] applied transformer `Element at index 0` to input {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)}, found {( + Button, identifier: 'BackButton' +)} +2026-08-27 01:08:37.379 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:08:37.383 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Current tree: +Application, 0x1181817c0, pid: 64575 + Window (Main), 0x11815f2c0 + Other, 0x119c09c40 + Other, 0x11816dfc0 + Other, 0x119c508c0 + Other, 0x119c04540 + Other, 0x1181655c0 + Other, 0x11815efc0 + Other, 0x1181bd340 + Other, 0x118165440 + Other, 0x119c421c0 + Navigat<…> +2026-08-27 01:08:37.383 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 found matching snapshots: {( + Button, identifier: 'BackButton' +)} (error: (null)) +2026-08-27 01:08:37.383 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 with results: (error: (null)) +2026-08-27 01:08:37.385 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributeValue" +) +2026-08-27 01:08:37.385 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.385 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.385 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.385 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.385 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.385 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeValue for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.385 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.385 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:08:37.386 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributeLabel" +) +2026-08-27 01:08:37.386 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.386 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.386 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.386 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.386 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeLabel for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.386 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.386 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.386 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Checking 'BottomTabs Example' for privileged AX value slot attributes +2026-08-27 01:08:37.386 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeLabel" = "BottomTabs Example"; +} +2026-08-27 01:08:37.387 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributePlaceholderValue" +) +2026-08-27 01:08:37.387 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.387 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.387 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.387 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.387 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.387 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributePlaceholderValue for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.388 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.388 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:08:37.390 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.390 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.390 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:37.390 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.390 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:37.390 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.390 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.390 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.390 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.390 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.390 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:37.390 Df ReactTestApp[64575:8728df6] [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:08:37.390 Df ReactTestApp[64575:8728df6] [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:08:37.390 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:37.417 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:37.417 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:37.417 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:37.417 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:37.417 Df ReactTestApp[64575:87298d5] [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:08:37.417 Df ReactTestApp[64575:87298d5] [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:08:37.418 Df ReactTestApp[64575:87298d5] [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:08:37.418 Df ReactTestApp[64575:87298d5] [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:08:37.418 Df ReactTestApp[64575:87298d5] [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:08:37.418 Df ReactTestApp[64575:87298d5] [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:08:37.418 Df ReactTestApp[64575:87298d5] [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:08:37.418 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.418 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.418 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.418 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.418 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.418 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:37.418 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.419 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Button` to input {( + Application, pid: 64575 +)}, found {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)} +2026-08-27 01:08:37.419 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] applied transformer `Element at index 0` to input {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)}, found {( + Button, identifier: 'BackButton' +)} +2026-08-27 01:08:37.419 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:08:37.422 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Current tree: +Application, 0x108dd8640, pid: 64575 + Window (Main), 0x1181559c0 + Other, 0x1181a60c0 + Other, 0x11a0aa440 + Other, 0x110b5df40 + Other, 0x11814fcc0 + Other, 0x110b259c0 + Other, 0x11a051ac0 + Other, 0x119c6ff40 + Other, 0x119c745c0 + Other, 0x119c42040 + Navigat<…> +2026-08-27 01:08:37.422 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 found matching snapshots: {( + Button, identifier: 'BackButton' +)} (error: (null)) +2026-08-27 01:08:37.422 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 with results: (error: (null)) +2026-08-27 01:08:37.424 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributeLabel" +) +2026-08-27 01:08:37.424 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.424 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.424 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.424 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.424 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.424 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeLabel for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.424 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.424 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Checking 'BottomTabs Example' for privileged AX value slot attributes +2026-08-27 01:08:37.424 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeLabel" = "BottomTabs Example"; +} +2026-08-27 01:08:37.425 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributeValue" +) +2026-08-27 01:08:37.425 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.425 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.425 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.425 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.425 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.425 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeValue for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.425 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.425 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:08:37.425 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributePlaceholderValue" +) +2026-08-27 01:08:37.426 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.426 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.426 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.426 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.426 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.426 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributePlaceholderValue for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.426 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.426 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:08:37.427 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.427 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.428 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:37.428 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.428 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:37.428 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.428 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.428 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.428 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.428 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.428 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:37.428 Df ReactTestApp[64575:8728df6] [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:08:37.428 Df ReactTestApp[64575:8728df6] [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:08:37.428 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:37.454 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:37.454 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:37.454 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:37.454 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:37.454 Df ReactTestApp[64575:87298d6] [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:08:37.455 Df ReactTestApp[64575:87298d6] [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:08:37.455 Df ReactTestApp[64575:87298d6] [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:08:37.455 Df ReactTestApp[64575:87298d6] [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:08:37.455 Df ReactTestApp[64575:87298d6] [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:08:37.455 Df ReactTestApp[64575:87298d6] [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:08:37.455 Df ReactTestApp[64575:87298d6] [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:08:37.455 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.455 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.455 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.455 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.455 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.455 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:37.455 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.456 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Button` to input {( + Application, pid: 64575 +)}, found {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)} +2026-08-27 01:08:37.456 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] applied transformer `Element at index 0` to input {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)}, found {( + Button, identifier: 'BackButton' +)} +2026-08-27 01:08:37.456 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:08:37.459 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Current tree: +Application, 0x119cfe8c0, pid: 64575 + Window (Main), 0x11a0d12c0 + Other, 0x11817dbc0 + Other, 0x11817da40 + Other, 0x1181c04c0 + Other, 0x1181103c0 + Other, 0x110bf3ac0 + Other, 0x108d29440 + Other, 0x110ba0b40 + Other, 0x11a581640 + Other, 0x110babf40 + Navigat<…> +2026-08-27 01:08:37.459 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 found matching snapshots: {( + Button, identifier: 'BackButton' +)} (error: (null)) +2026-08-27 01:08:37.459 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 with results: (error: (null)) +2026-08-27 01:08:37.461 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributeLabel" +) +2026-08-27 01:08:37.461 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.461 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.461 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.461 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.461 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.461 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeLabel for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.461 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.461 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Checking 'BottomTabs Example' for privileged AX value slot attributes +2026-08-27 01:08:37.461 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeLabel" = "BottomTabs Example"; +} +2026-08-27 01:08:37.462 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributeValue" +) +2026-08-27 01:08:37.462 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.462 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.462 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.462 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.462 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.462 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeValue for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.462 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.462 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:08:37.463 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributePlaceholderValue" +) +2026-08-27 01:08:37.463 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.463 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.463 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.463 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.463 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.463 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributePlaceholderValue for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.463 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.463 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:08:37.464 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.464 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.464 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:37.464 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.464 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:37.464 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.464 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.464 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.464 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.464 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.464 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:37.464 Df ReactTestApp[64575:8728df6] [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:08:37.464 Df ReactTestApp[64575:8728df6] [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:08:37.465 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:37.493 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:37.493 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:37.493 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:37.493 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:37.493 Df ReactTestApp[64575:87298d5] [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:08:37.494 Df ReactTestApp[64575:87298d5] [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:08:37.494 Df ReactTestApp[64575:87298d5] [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:08:37.494 Df ReactTestApp[64575:87298d5] [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:08:37.494 Df ReactTestApp[64575:87298d5] [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:08:37.494 Df ReactTestApp[64575:87298d5] [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:08:37.494 Df ReactTestApp[64575:87298d5] [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:08:37.494 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.494 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.494 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.495 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.495 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.495 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:37.495 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.495 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Button` to input {( + Application, pid: 64575 +)}, found {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)} +2026-08-27 01:08:37.495 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] applied transformer `Element at index 0` to input {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)}, found {( + Button, identifier: 'BackButton' +)} +2026-08-27 01:08:37.495 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:08:37.499 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Current tree: +Application, 0x119caccc0, pid: 64575 + Window (Main), 0x1181b65c0 + Other, 0x1181b62c0 + Other, 0x1181bb9c0 + Other, 0x119c0d6c0 + Other, 0x1181b6740 + Other, 0x118151640 + Other, 0x1181bc8c0 + Other, 0x108de1040 + Other, 0x108d30dc0 + Other, 0x119c31240 + Navigat<…> +2026-08-27 01:08:37.499 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 found matching snapshots: {( + Button, identifier: 'BackButton' +)} (error: (null)) +2026-08-27 01:08:37.499 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 with results: (error: (null)) +2026-08-27 01:08:37.501 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributeVisiblePoint" +) +2026-08-27 01:08:37.501 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.501 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.501 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.501 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.501 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.501 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeVisiblePoint for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.539 E ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeCommon] Unknown client: ReactTestApp +2026-08-27 01:08:37.548 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.549 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeVisiblePoint" = { + X = 38; + Y = 84; + }; +} +2026-08-27 01:08:37.549 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributeWindowContextId" +) +2026-08-27 01:08:37.549 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.549 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.549 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.549 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.550 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeWindowContextId for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.550 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.550 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.550 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeWindowContextId" = 1635110261; +} +2026-08-27 01:08:37.550 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributeWindowDisplayId" +) +2026-08-27 01:08:37.550 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.550 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.550 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.551 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.551 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.551 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeWindowDisplayId for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.551 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.551 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeWindowDisplayId" = 1; +} +2026-08-27 01:08:37.552 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributeFrame", + "XC_kAXXCAttributeWindowDisplayId", + "XC_kAXXCAttributeWindowContextId" +) +2026-08-27 01:08:37.552 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.552 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.552 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.552 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.552 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.552 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeFrame, XC_kAXXCAttributeWindowDisplayId, XC_kAXXCAttributeWindowContextId for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.552 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.552 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeFrame" = { + Height = 44; + Width = 44; + X = 16; + Y = 62; + }; + "XC_kAXXCAttributeWindowContextId" = 1635110261; + "XC_kAXXCAttributeWindowDisplayId" = 1; +} +2026-08-27 01:08:37.555 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributeLabel" +) +2026-08-27 01:08:37.555 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.555 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.555 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.555 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.555 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.555 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeLabel for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.556 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.556 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Checking 'BottomTabs Example' for privileged AX value slot attributes +2026-08-27 01:08:37.556 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeLabel" = "BottomTabs Example"; +} +2026-08-27 01:08:37.557 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributeValue" +) +2026-08-27 01:08:37.557 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.557 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.557 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.557 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.557 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.557 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeValue for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.557 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.557 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:08:37.558 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributePlaceholderValue" +) +2026-08-27 01:08:37.558 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.558 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.558 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.558 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.558 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.558 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributePlaceholderValue for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.558 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.558 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:08:37.559 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.559 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.560 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:37.560 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.560 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:37.560 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.560 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.560 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.560 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.560 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.560 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:37.560 Df ReactTestApp[64575:8728df6] [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:08:37.560 Df ReactTestApp[64575:8728df6] [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:08:37.560 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:37.588 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:37.588 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:37.588 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:37.588 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:37.588 Df ReactTestApp[64575:87298d5] [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:08:37.589 Df ReactTestApp[64575:87298d5] [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:08:37.589 Df ReactTestApp[64575:87298d5] [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:08:37.589 Df ReactTestApp[64575:87298d5] [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:08:37.589 Df ReactTestApp[64575:87298d5] [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:08:37.589 Df ReactTestApp[64575:87298d5] [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:08:37.589 Df ReactTestApp[64575:87298d5] [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:08:37.590 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.590 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.590 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.590 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.590 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.590 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:37.590 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.590 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Button` to input {( + Application, pid: 64575 +)}, found {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)} +2026-08-27 01:08:37.590 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] applied transformer `Element at index 0` to input {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)}, found {( + Button, identifier: 'BackButton' +)} +2026-08-27 01:08:37.590 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:08:37.594 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Current tree: +Application, 0x11819e5c0, pid: 64575 + Window (Main), 0x118142dc0 + Other, 0x119c49240 + Other, 0x110bc6c40 + Other, 0x110bf1b40 + Other, 0x110b757c0 + Other, 0x119c20140 + Other, 0x119c26ec0 + Other, 0x11a0bf2c0 + Other, 0x1181c8bc0 + Other, 0x110b8a640 + Navigat<…> +2026-08-27 01:08:37.594 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 found matching snapshots: {( + Button, identifier: 'BackButton' +)} (error: (null)) +2026-08-27 01:08:37.595 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 with results: (error: (null)) +2026-08-27 01:08:37.596 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributeHasNativeFocus" +) +2026-08-27 01:08:37.596 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.596 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.596 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.596 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.596 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.596 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeHasNativeFocus for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.596 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.597 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeHasNativeFocus" = 0; +} +2026-08-27 01:08:37.597 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributeLabel" +) +2026-08-27 01:08:37.597 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.597 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.597 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.597 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.597 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.597 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeLabel for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.598 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.598 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Checking 'BottomTabs Example' for privileged AX value slot attributes +2026-08-27 01:08:37.598 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying with attribute values: { + "XC_kAXXCAttributeLabel" = "BottomTabs Example"; +} +2026-08-27 01:08:37.599 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributeValue" +) +2026-08-27 01:08:37.599 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.599 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.599 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.599 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.599 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.599 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributeValue for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.599 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.599 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:08:37.599 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received attributes request for element: AX element pid: 64575, elementOrHash.elementID: 4502569376.168. Attributes: ( + "XC_kAXXCAttributePlaceholderValue" +) +2026-08-27 01:08:37.599 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.599 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.599 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.600 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.600 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.600 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Fetching AX attributes XC_kAXXCAttributePlaceholderValue for AX element pid: 64575, elementOrHash.elementID: 4502569376.168 +2026-08-27 01:08:37.600 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got attributes, transferring to dictionary for return. +2026-08-27 01:08:37.600 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying with attribute values: { +} +2026-08-27 01:08:37.601 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.601 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.601 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:37.601 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.601 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeTraits. +2026-08-27 01:08:37.601 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.601 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.601 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.602 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.602 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.602 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:37.602 Df ReactTestApp[64575:8728df6] [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:08:37.602 Df ReactTestApp[64575:8728df6] [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:08:37.602 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 5019, 5058, 2004 +2026-08-27 01:08:37.629 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:37.629 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:37.629 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.03s +2026-08-27 01:08:37.629 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:37.629 Df ReactTestApp[64575:87298d5] [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:08:37.630 Df ReactTestApp[64575:87298d5] [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:08:37.630 Df ReactTestApp[64575:87298d5] [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:08:37.630 Df ReactTestApp[64575:87298d5] [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:08:37.630 Df ReactTestApp[64575:87298d5] [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:08:37.630 Df ReactTestApp[64575:87298d5] [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:08:37.630 Df ReactTestApp[64575:87298d5] [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:08:37.630 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:37.630 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:37.630 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:37.630 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:37.630 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:37.630 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:37.630 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575 using transformers +↪︎ Descendants matching type Button + ↪︎ Element at index 0 +2026-08-27 01:08:37.631 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Button` to input {( + Application, pid: 64575 +)}, found {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)} +2026-08-27 01:08:37.631 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] applied transformer `Element at index 0` to input {( + Button, identifier: 'BackButton', + Button, Selected, + Button, + Button, + Button, + Button +)}, found {( + Button, identifier: 'BackButton' +)} +2026-08-27 01:08:37.631 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] [Match All] setting out related elements {( +)} +2026-08-27 01:08:37.634 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Current tree: +Application, 0x119c367c0, pid: 64575 + Window (Main), 0x119c304c0 + Other, 0x119c2f440 + Other, 0x119c5ecc0 + Other, 0x119c2f8c0 + Other, 0x119c36dc0 + Other, 0x119c36c40 + Other, 0x110bd4140 + Other, 0x119c4fe40 + Other, 0x110b496c0 + Other, 0x119c2fbc0 + Navigat<…> +2026-08-27 01:08:37.634 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 found matching snapshots: {( + Button, identifier: 'BackButton' +)} (error: (null)) +2026-08-27 01:08:37.635 Df ReactTestApp[64575:87298d5] [com.apple.dt.xctest:Default] Replying to query ↪︎ Descendants matching type Button + ↪︎ Element at index 0 with results: (error: (null)) +2026-08-27 01:08:38.340 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXAppAccessibility] Presentation controller doesn't modalize: <_UIRootPresentationController: 0x1096d6d80> +2026-08-27 01:08:38.341 E ReactTestApp[64575:8728df6] [com.apple.UIKit:Assert] -[UIApplication statusBarStyle] API has been deprecated and is a no-op on 27.0 and later. +2026-08-27 01:08:38.353 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:08:38.353 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:08:39.199 E ReactTestApp[64575:8728df6] [com.apple.UIKit:Assert] -[UIApplication statusBarStyle] API has been deprecated and is a no-op on 27.0 and later. +2026-08-27 01:08:39.199 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:08:39.200 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.200 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:08:39.200 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.227 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x11ba44240; type: 0; subtype: 0; backing type: 11; tagged context: 0x6175CD75; shouldSend: 1; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:08:39.227 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Sending UIEvent type: 0; subtype: 0; to windows: 1; dispatchLevel: 1 +2026-08-27 01:08:39.227 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Sending UIEvent type: 0; subtype: 0; to window: ; contextId: 0x6175CD75 +2026-08-27 01:08:39.238 A ReactTestApp[64575:8728df6] (UIKitCore) send gesture actions +2026-08-27 01:08:39.244 A ReactTestApp[64575:8728df6] (UIKitCore) send gesture actions +2026-08-27 01:08:39.259 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x11ba44240; type: 0; subtype: 0; backing type: 11; tagged context: 0x6175CD75; shouldSend: 0; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:08:39.268 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1001) +2026-08-27 01:08:39.278 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x11ba44240; type: 0; subtype: 0; backing type: 11; tagged context: 0x6175CD75; shouldSend: 0; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:08:39.289 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1001) error:0 data: +2026-08-27 01:08:39.290 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.290 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.290 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.290 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.290 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.290 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.290 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.290 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.290 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.290 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.290 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.290 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.290 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.290 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.290 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.290 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.290 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.291 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.291 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.291 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.291 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.291 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.291 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.291 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.291 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.291 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.291 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.291 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.291 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.291 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.291 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.291 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.291 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.291 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.291 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.292 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.292 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.292 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.292 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.292 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.292 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.292 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.292 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.292 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.292 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.293 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x11ba44240; type: 0; subtype: 0; backing type: 11; tagged context: 0x6175CD75; shouldSend: 0; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:08:39.293 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x11ba44240; type: 0; subtype: 0; backing type: 11; tagged context: 0x6175CD75; shouldSend: 1; ignoreInteractionEvents: 0, systemGestureStateChange: 0 +2026-08-27 01:08:39.293 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Sending UIEvent type: 0; subtype: 0; to windows: 1; dispatchLevel: 1 +2026-08-27 01:08:39.293 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Sending UIEvent type: 0; subtype: 0; to window: ; contextId: 0x6175CD75 +2026-08-27 01:08:39.293 A ReactTestApp[64575:8728df6] (UIKitCore) send gesture actions +2026-08-27 01:08:39.293 A ReactTestApp[64575:8728df6] (UIKitCore) send gesture actions +2026-08-27 01:08:39.294 A ReactTestApp[64575:8728df6] (UIKitCore) send control actions +2026-08-27 01:08:39.294 Df ReactTestApp[64575:8728df6] (CoreFoundation) Incorrect NSStringEncoding value 0x8000100 detected. Assuming NSStringEncodingASCII. Will stop this compatibility mapping behavior in the near future. +2026-08-27 01:08:39.295 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.295 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.295 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.296 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.297 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.297 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.297 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.297 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.297 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.297 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.297 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.297 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Enqueueing block for execution after current event dispatch completes +2026-08-27 01:08:39.297 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1000) +2026-08-27 01:08:39.299 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:08:39.299 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Draining post send event blocks: 47; pass: 1 +2026-08-27 01:08:39.299 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:EventDispatch] Evaluating dispatch of UIEvent: 0x11ba44240; type: 0; subtype: 0; backing type: 11; tagged context: 0x6175CD75; shouldSend: 0; ignoreInteractionEvents: 0, systemGestureStateChange: 1 +2026-08-27 01:08:39.305 E ReactTestApp[64575:8728df6] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:08:39.305 E ReactTestApp[64575:8728df6] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:08:39.305 E ReactTestApp[64575:8728df6] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:08:39.305 E ReactTestApp[64575:8728df6] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:08:39.305 E ReactTestApp[64575:8728df6] [com.apple.UIKit:Assert] -[UIApplication statusBarStyle] API has been deprecated and is a no-op on 27.0 and later. +2026-08-27 01:08:39.305 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:08:39.305 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:08:39.306 E ReactTestApp[64575:8728df6] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:08:39.306 E ReactTestApp[64575:8728df6] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:08:39.306 E ReactTestApp[64575:8728df6] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:08:39.306 E ReactTestApp[64575:8728df6] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:08:39.306 E ReactTestApp[64575:8728df6] [com.apple.coreanimation:API] cannot add handler to 0 from 0 - dropping +2026-08-27 01:08:39.306 E ReactTestApp[64575:8728df6] [com.apple.UIKit:Assert] -[UIApplication statusBarStyle] API has been deprecated and is a no-op on 27.0 and later. +2026-08-27 01:08:39.308 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.309 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1000) error:0 data: +2026-08-27 01:08:39.309 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:08:39.309 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.309 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.309 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.309 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.309 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.309 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.309 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.309 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.309 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.309 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.309 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:08:39.309 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:08:39.310 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.310 A ReactTestApp[64575:8728df6] (UIKitCore) send gesture actions +2026-08-27 01:08:39.310 A ReactTestApp[64575:8728df6] (UIKitCore) send gesture actions +2026-08-27 01:08:39.320 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.320 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.320 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.320 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.329 Df ReactTestApp[64575:8728df6] [com.apple.UIKit:KeyboardFocusAssistant] requestKeyboardFocusWithProvenance: (token:) +2026-08-27 01:08:39.331 I ReactTestApp[64575:8728e65] [com.facebook.react.log:javascript] 'ios', ' Rendering Contacts' +2026-08-27 01:08:39.337 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.337 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.337 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.337 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.343 I ReactTestApp[64575:8728e65] [com.facebook.react.log:javascript] SafeAreaView has been deprecated and will be removed in a future release. Please use 'react-native-safe-area-context' instead. See https://github.com/th3rdwave/react-native-safe-area-context +2026-08-27 01:08:39.353 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.353 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.354 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.354 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.370 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.370 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.370 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.370 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.387 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.387 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.387 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.387 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.403 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.404 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.404 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.404 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.404 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.420 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.420 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.420 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.420 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.430 I ReactTestApp[64575:8728e65] [com.facebook.react.log:javascript] ┘ %caction %cNAVIGATE %c{ %cname%c: %c"Contacts"%c, %cparams%c: %cundefined%c, %cmerge%c: %cundefined%c, %cpop%c: %cundefined%c } +2026-08-27 01:08:39.432 I ReactTestApp[64575:8728e65] [com.facebook.react.log:javascript] │ '%caction', 'color: #C2185B; font-weight: bold', { type: 'NAVIGATE', + payload: + { name: 'Contacts', + params: undefined, + merge: undefined, + pop: undefined }, + target: 'tab-sqiYlZ7KLG1cWJOyOLZgH' } +2026-08-27 01:08:39.433 I ReactTestApp[64575:8728e65] [com.facebook.react.log:javascript] │ '%cstate', 'color: #C2185B; font-weight: bold', { stale: false, + type: 'stack', + key: 'stack-hDyYOUh9b7HYyR9fgYENt', + index: 1, + routeNames: + [ 'BottomTabs Example', + 'Three Tabs', + 'Four Tabs', + 'Five Tabs', + 'Six Tabs', + 'SF Symbols', + 'Labeled Tabs', + 'Unlabeled Tabs', + 'Embedded stacks', + 'Lazy Tabs', + 'Tab Bar Hidden', + 'Custom tabBar', + 'Original icon colors', + 'Four Tabs - no animations', + 'Four Tabs - Transparent scroll edge appearance', + 'Four Tabs - Opaque scroll edge appearance', + 'Four Tabs - Custom Background Color of Tabs', + 'Four Tabs - Active Indicator color', + 'Four Tabs - With Hidden Tab', + 'Native Bottom Tabs with freezeOnBlur', + 'Native Bottom Tabs with SVG Icons', + 'Native Bottom Tabs unmounting', + 'Native Bottom Tabs with SVG Remote Icons', + 'Native Bottom Tabs with custom tabBar', + 'Native Bottom Tabs with screenLayout', + 'Native Bottom Tabs with Lazy', + 'Native Bo<…> +2026-08-27 01:08:39.433 I ReactTestApp[64575:8728e65] [com.facebook.react.log:javascript] ┘ +2026-08-27 01:08:39.478 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.478 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.478 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.478 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.478 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.478 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.478 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.478 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.478 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.478 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.514 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.521 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.521 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.521 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.521 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.521 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.521 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.521 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.521 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.521 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.521 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.521 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.521 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.521 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.522 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.522 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.522 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.522 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.522 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.522 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.522 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.522 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.522 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.522 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.522 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.522 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.522 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.522 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.522 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.522 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.522 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.522 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.522 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.522 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.523 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.523 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.523 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.523 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.523 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.523 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.523 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.523 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.523 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.523 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.523 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.523 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.523 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.523 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.524 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.524 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.524 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.524 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.524 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.524 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.524 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.524 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.524 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.524 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.524 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.524 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.524 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.524 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.524 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.524 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.524 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.525 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.525 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.525 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.525 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.525 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.525 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.525 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.525 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.525 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.525 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.525 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.525 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.525 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.525 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.525 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.525 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.525 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.525 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.526 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.526 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.526 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.526 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.526 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.526 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.526 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.526 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.526 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.526 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.526 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.526 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.526 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.526 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.526 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.526 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.526 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.526 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.526 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.526 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.527 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.527 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.527 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.527 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.527 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.527 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.527 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.527 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.527 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.527 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.527 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.527 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.527 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.527 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.527 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.527 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.527 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.527 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.527 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.528 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.528 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.528 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.548 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.555 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.555 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.555 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.555 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.555 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.555 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.555 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.555 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.562 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.563 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.563 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.563 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.563 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.570 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.571 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.571 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.571 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.587 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.587 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.587 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.587 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.603 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.603 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.604 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.604 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.620 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.620 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.620 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.629 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.642 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.643 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.643 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.643 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.643 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.654 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.654 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.654 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.654 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.670 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.670 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.670 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.670 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.670 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.671 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.687 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.687 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.687 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.687 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.687 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.703 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.704 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.704 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.704 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.704 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.725 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.725 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.725 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.726 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.726 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.737 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.737 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.737 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.737 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.738 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.738 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.738 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.738 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.738 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.738 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.738 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.738 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.738 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.738 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.738 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.738 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.738 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.738 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.738 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.738 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.738 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.738 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.738 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.739 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.739 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.739 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.739 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.739 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.739 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.739 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.739 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.739 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.739 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.739 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.739 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.739 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.739 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.739 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.739 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.739 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.739 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.740 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.740 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.740 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.740 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.740 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.740 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.740 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.740 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.740 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.740 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.740 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.740 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.740 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.740 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.740 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.740 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.740 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.740 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.740 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.741 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.741 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.741 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.753 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.753 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.753 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.754 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.839 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1001) +2026-08-27 01:08:39.839 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1001) +2026-08-27 01:08:39.840 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.840 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.840 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.840 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.840 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.840 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.840 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.840 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.840 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.840 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.840 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.840 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.840 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.840 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.840 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.840 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.840 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.840 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.841 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.841 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.841 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.841 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.841 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.841 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.841 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.841 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.841 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.841 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.841 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1001) error:0 data: +2026-08-27 01:08:39.841 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.853 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.853 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.853 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.853 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.853 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.853 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.853 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.854 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.870 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.870 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.870 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.870 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.870 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.870 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.886 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.887 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.887 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.887 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.887 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.887 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.903 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.903 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.903 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.903 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.903 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.903 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.903 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.903 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.904 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.904 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.920 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.920 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.920 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.920 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.936 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.936 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.936 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.936 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.937 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.937 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.953 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.953 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.953 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.953 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.970 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.970 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.970 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.970 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.970 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.970 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.970 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:39.986 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.986 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.986 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:39.987 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:40.003 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.003 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.003 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.003 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.003 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:40.019 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.020 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.020 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.020 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:40.036 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.036 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.036 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.036 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:40.053 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.053 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.053 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.053 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:40.070 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.070 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.070 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.070 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:40.086 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.087 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.087 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.087 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:40.103 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.103 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.103 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.103 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:40.120 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.120 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.120 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.120 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:40.136 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.137 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.137 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.137 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:40.153 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.154 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.154 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.154 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:40.170 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.171 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.171 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.171 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:40.187 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.188 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.188 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.188 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.188 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.188 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:40.204 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.204 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.204 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.204 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:40.220 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.220 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.220 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.220 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:40.236 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.236 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.236 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.236 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:40.253 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.253 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.253 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.253 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:40.270 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.270 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.270 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.270 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:40.286 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.286 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.286 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.287 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.287 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:40.303 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.303 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.303 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.303 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.304 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:40.320 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.320 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.320 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.321 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:40.460 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.461 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:40.548 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.548 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:40.993 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:40.994 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:41.886 Df ReactTestApp[64575:8729fb5] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Any + ↪︎ Elements matching predicate 'label ==[c] "Marissa Castillo"' +2026-08-27 01:08:41.886 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Any + ↪︎ Elements matching predicate 'label ==[c] "Marissa Castillo"' +2026-08-27 01:08:41.886 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:41.886 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type Any + ↪︎ Elements matching predicate 'label ==[c] "Marissa Castillo"' +2026-08-27 01:08:41.886 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeLabel. +2026-08-27 01:08:41.886 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:41.886 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:41.886 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:41.886 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:41.886 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:41.887 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:41.887 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Capturing hierarchy with attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeParent, XC_kAXXCAttributeTraits, XC_kAXXCAttributeIdentifier, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeLabel +2026-08-27 01:08:41.887 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Capturing hierarchy with parameters { + attributes = ( + 5003, + 5004, + 5002, + 2004, + 5019, + 5058, + 2001 + ); + maxArrayCount = 2147483647; + maxChildren = 2147483647; + maxDepth = 2147483647; + snapshotKeyHonorModalViews = 0; + traverseFromParentsToChildren = 1; +} +2026-08-27 01:08:41.887 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 2004, 5019, 5058, 2001 +2026-08-27 01:08:41.955 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:41.955 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:41.955 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.07s +2026-08-27 01:08:41.955 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] Checking 'ReactNativeBottomTabs' for privileged AX value slot attributes +2026-08-27 01:08:41.955 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:41.955 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] Checking 'BottomTabs Example' for privileged AX value slot attributes +2026-08-27 01:08:41.955 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] Checking 'Native Bottom Tabs with Lazy' for privileged AX value slot attributes +2026-08-27 01:08:41.955 Df ReactTestApp[64575:8729fb4] [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:08:41.956 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] Checking 'Currently Playing Song' for privileged AX value slot attributes +2026-08-27 01:08:41.956 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] Checking '⏸' for privileged AX value slot attributes +2026-08-27 01:08:41.956 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] Checking '⏭' for privileged AX value slot attributes +2026-08-27 01:08:41.956 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] Checking 'Article' for privileged AX value slot attributes +2026-08-27 01:08:41.956 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] Checking 'Albums' for privileged AX value slot attributes +2026-08-27 01:08:41.956 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] Checking 'Contacts' for privileged AX value slot attributes +2026-08-27 01:08:41.957 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] Checking 'Chat' for privileged AX value slot attributes +2026-08-27 01:08:41.957 Df ReactTestApp[64575:8729fb4] [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:08:41.957 Df ReactTestApp[64575:8729fb4] [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:08:41.957 Df ReactTestApp[64575:8729fb4] [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:08:41.957 Df ReactTestApp[64575:8729fb4] [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:08:41.957 Df ReactTestApp[64575:8729fb4] [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:08:41.957 Df ReactTestApp[64575:8729fb4] [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:08:41.957 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:41.957 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:41.958 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:41.958 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:41.958 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:41.958 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:41.958 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575, label: 'ReactNativeBottomTabs' using transformers +↪︎ Descendants matching type Any + ↪︎ Elements matching predicate 'label ==[c] "Marissa Castillo"' +2026-08-27 01:08:41.959 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Any` to input {( + Application, pid: 64575, label: 'ReactNativeBottomTabs' +)}, found {( + Window (Main), + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + NavigationBar, identifier: 'Native Bottom Tabs with Lazy', + Other, + Toolbar, identifier: 'Toolbar', label: 'Toolbar', + Button, identifier: 'BackButton', label: 'BottomTabs Example', + StaticText, label: 'Native Bottom Tabs with Lazy', + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + TabBar, label: 'Tab Bar', + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Button, label: 'Article', Selected, + Button, label: 'Albums', + Button, label: 'Contacts', +2026-08-27 01:08:41.961 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] [Match All] applied transformer `Elements matching predicate 'label ==[c] "Marissa Castillo"'` to input {( + Window (Main), + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + NavigationBar, identifier: 'Native Bottom Tabs with Lazy', + Other, + Toolbar, identifier: 'Toolbar', label: 'Toolbar', + Button, identifier: 'BackButton', label: 'BottomTabs Example', + StaticText, label: 'Native Bottom Tabs with Lazy', + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + TabBar, label: 'Tab Bar', + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Button, label: 'Article', Selected, + Button, label: 'Albums', + Button, label: 'Contacts', Selected, + Button, label: 'Chat', + , found +2026-08-27 01:08:41.963 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {( +)} +2026-08-27 01:08:41.971 Df ReactTestApp[64575:8729fb4] [com.apple.dt.xctest:Default] Current tree: +Application, 0x110b1e040, pid: 64575, label: 'ReactNativeBottomTabs' + Window (Main), 0x110b1e1c0 + Other, 0x110b1e340 + Other, 0x110b1e4c0 + Other, 0x110b1e640 + Other, 0x110b1e7c0 + Other, 0x110b1e940 + Other, 0x110b1eac0 + Other, 0x110b184c0 + Other, 0x110b187c0 + Other, 0x110b196c0 (error: (null)) +2026-08-27 01:08:49.991 Df ReactTestApp[64575:8729fb5] [com.apple.CFNetwork:Default] Connection 7: cleaning up +2026-08-27 01:08:49.991 Df ReactTestApp[64575:8729fb5] [com.apple.network:connection] [C7 52271257-E688-4202-BF71-C7BAC19C9EDD IPv4#38a70601:8087 tcp, url: http://127.0.0.1:8087/assets/assets/avatar-1.png, definite, attribution: developer] cancel +2026-08-27 01:08:49.991 Df ReactTestApp[64575:8729fb5] [com.apple.network:connection] [C7 52271257-E688-4202-BF71-C7BAC19C9EDD IPv4#38a70601:8087 tcp, url: http://127.0.0.1:8087/assets/assets/avatar-1.png, definite, attribution: developer] cancelled + [C7 964C7D6D-9E88-4BB0-A975-888EA0AF49D6 127.0.0.1:51815<->IPv4#38a70601:8087] + Connected Path: satisfied (Path is satisfied), interface: lo0 + Privacy Stance: Not Eligible + Duration: 30.483s, TCP @0.001s took 0.002s + bytes in/out: 542736/2580, packets in/out: 43/9, rtt: 0.001s, retransmitted bytes: 0, out-of-order bytes: 0 + ecn packets sent/acked/marked/lost: 0/0/0/0 +2026-08-27 01:08:49.991 I ReactTestApp[64575:8729fb5] [com.apple.network:connection] nw_endpoint_handler_cancel [C7 IPv4#38a70601:8087 ready socket-flow (satisfied (Path is satisfied), interface: lo0)] +2026-08-27 01:08:49.991 Df ReactTestApp[64575:8729fb5] [com.apple.network:connection] nw_connection_report_state_with_handler_on_nw_queue [C7] reporting state cancelled +2026-08-27 01:08:49.991 Df ReactTestApp[64575:8729fb5] [com.apple.CFNetwork:Default] Connection 8: cleaning up +2026-08-27 01:08:49.992 Df ReactTestApp[64575:8729fb5] [com.apple.network:connection] [C8 1AD0ABA2-0677-4E81-A965-FA730E0857EC IPv4#38a70601:8087 tcp, url: http://127.0.0.1:8087/assets/assets/book.jpg, definite, attribution: developer] cancel +2026-08-27 01:08:49.992 Df ReactTestApp[64575:8729fb5] [com.apple.network:connection] [C8 1AD0ABA2-0677-4E81-A965-FA730E0857EC IPv4#38a70601:8087 tcp, url: http://127.0.0.1:8087/assets/assets/book.jpg, definite, attribution: developer] cancelled + [C8 964C7D6D-9E88-4BB0-A975-888EA0AF49D6 127.0.0.1:51816<->IPv4#38a70601:8087] + Connected Path: satisfied (Path is satisfied), interface: lo0 + Privacy Stance: Not Eligible + Duration: 30.482s, TCP @0.000s took 0.001s + bytes in/out: 608474/2858, packets in/out: 43/10, rtt: 0.001s, retransmitted bytes: 0, out-of-order bytes: 0 + ecn packets sent/acked/marked/lost: 0/0/0/0 +2026-08-27 01:08:49.992 I ReactTestApp[64575:8729fb5] [com.apple.network:connection] nw_endpoint_handler_cancel [C8 IPv4#38a70601:8087 ready socket-flow (satisfied (Path is satisfied), interface: lo0)] +2026-08-27 01:08:49.992 Df ReactTestApp[64575:8729fb5] [com.apple.network:connection] nw_connection_report_state_with_handler_on_nw_queue [C8] reporting state cancelled +2026-08-27 01:08:49.992 Df ReactTestApp[64575:8729fb5] [com.apple.CFNetwork:Default] Connection 9: cleaning up +2026-08-27 01:08:49.992 Df ReactTestApp[64575:8729fb5] [com.apple.network:connection] [C9 C55F653A-5AD3-42F1-81E5-7D90567913A5 IPv4#38a70601:8087 tcp, url: http://127.0.0.1:8087/assets/assets/album-art-01.jpg, definite, attribution: developer] cancel +2026-08-27 01:08:49.992 Df ReactTestApp[64575:8729fb5] [com.apple.network:connection] [C9 C55F653A-5AD3-42F1-81E5-7D90567913A5 IPv4#38a70601:8087 tcp, url: http://127.0.0.1:8087/assets/assets/album-art-01.jpg, definite, attribution: developer] cancelled + [C9 964C7D6D-9E88-4BB0-A975-888EA0AF49D6 127.0.0.1:51817<->IPv4#38a70601:8087] + Connected Path: satisfied (Path is satisfied), interface: lo0 + Privacy Stance: Not Eligible + Duration: 30.482s, TCP @0.000s took 0.001s + bytes in/out: 401190/5624, packets in/out: 32/9, rtt: 0.001s, retransmitted bytes: 0, out-of-order bytes: 0 + ecn packets sent/acked/marked/lost: 0/0/0/0 +2026-08-27 01:08:49.992 I ReactTestApp[64575:8729fb5] [com.apple.network:connection] nw_endpoint_handler_cancel [C9 IPv4#38a70601:8087 ready socket-flow (satisfied (Path is satisfied), interface: lo0)] +2026-08-27 01:08:49.992 Df ReactTestApp[64575:8729fb5] [com.apple.network:connection] nw_connection_report_state_with_handler_on_nw_queue [C9] reporting state cancelled +2026-08-27 01:08:49.992 Df ReactTestApp[64575:8729fb5] [com.apple.CFNetwork:Default] Connection 11: cleaning up +2026-08-27 01:08:49.992 Df ReactTestApp[64575:8729fb5] [com.apple.network:connection] [C11 2970A423-9148-432D-A869-933C5F3BD00D IPv4#38a70601:8087 tcp, url: http://127.0.0.1:8087/assets/assets/album-art-09.jpg, definite, attribution: developer] cancel +2026-08-27 01:08:49.992 Df ReactTestApp[64575:8729fb5] [com.apple.network:connection] [C11 2970A423-9148-432D-A869-933C5F3BD00D IPv4#38a70601:8087 tcp, url: http://127.0.0.1:8087/assets/assets/album-art-09.jpg, definite, attribution: developer] cancelled + [C11 964C7D6D-9E88-4BB0-A975-888EA0AF49D6 127.0.0.1:51819<->IPv4#38a70601:8087] + Connected Path: satisfied (Path is satisfied), interface: lo0 + Privacy Stance: Not Eligible + Duration: 30.415s, TCP @0.000s took 0.001s + bytes in/out: 373536/1725, packets in/out: 26/6, rtt: 0.001s, retransmitted bytes: 0, out-of-order bytes: 0 + ecn packets sent/acked/marked/lost: 0/0/0/0 +2026-08-27 01:08:49.992 I ReactTestApp[64575:8729fb5] [com.apple.network:connection] nw_endpoint_handler_cancel [C11 IPv4#38a70601:8087 ready socket-flow (satisfied (Path is satisfied), interface: lo0)] +2026-08-27 01:08:49.992 I ReactTestApp[64575:8729fb5] [com.apple.network:connection] nw_association_schedule_deactivation will become dormant after 10000ms of inactivity +2026-08-27 01:08:49.992 Df ReactTestApp[64575:8729fb5] [com.apple.network:connection] nw_connection_report_state_with_handler_on_nw_queue [C11] reporting state cancelled +2026-08-27 01:08:49.992 Df ReactTestApp[64575:8729fb5] [com.apple.CFNetwork:Default] Connection 7: done +2026-08-27 01:08:49.992 I ReactTestApp[64575:8729fb5] [com.apple.network:connection] [C7 IPv4#38a70601:8087 tcp, url: http://127.0.0.1:8087/assets/assets/avatar-1.png, definite, attribution: developer] dealloc +2026-08-27 01:08:49.992 Df ReactTestApp[64575:8729fb5] [com.apple.CFNetwork:Default] Connection 8: done +2026-08-27 01:08:49.992 I ReactTestApp[64575:8729fb5] [com.apple.network:connection] [C8 IPv4#38a70601:8087 tcp, url: http://127.0.0.1:8087/assets/assets/book.jpg, definite, attribution: developer] dealloc +2026-08-27 01:08:49.992 Df ReactTestApp[64575:8729fb5] [com.apple.CFNetwork:Default] Connection 9: done +2026-08-27 01:08:49.992 I ReactTestApp[64575:8729fb5] [com.apple.network:connection] [C9 IPv4#38a70601:8087 tcp, url: http://127.0.0.1:8087/assets/assets/album-art-01.jpg, definite, attribution: developer] dealloc +2026-08-27 01:08:49.992 Df ReactTestApp[64575:8729fb5] [com.apple.CFNetwork:Default] Connection 11: done +2026-08-27 01:08:49.992 I ReactTestApp[64575:8729fb5] [com.apple.network:connection] [C11 IPv4#38a70601:8087 tcp, url: http://127.0.0.1:8087/assets/assets/album-art-09.jpg, definite, attribution: developer] dealloc +2026-08-27 01:08:52.526 Df ReactTestApp[64575:87298d6] [com.apple.dt.xctest:Default] Received request to fetch matches for query: ↪︎ Descendants matching type Any + ↪︎ Elements matching predicate 'label ==[c] "Marissa Castillo"' +2026-08-27 01:08:52.526 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] Evaluating query: + ↪︎ Descendants matching type Any + ↪︎ Elements matching predicate 'label ==[c] "Marissa Castillo"' +2026-08-27 01:08:52.526 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] Getting root element snapshot +2026-08-27 01:08:52.526 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] Getting snapshot for App element pid: 64575 for query ↪︎ Descendants matching type Any + ↪︎ Elements matching predicate 'label ==[c] "Marissa Castillo"' +2026-08-27 01:08:52.526 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] Query requires iOS snapshot attributes XC_kAXXCAttributeLabel. +2026-08-27 01:08:52.526 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:52.526 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:52.526 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:52.526 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:52.526 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:52.526 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got main window {pid=64575} {uid=[ID:4 hash:0x10839ce80]} +2026-08-27 01:08:52.526 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Capturing hierarchy with attributes XC_kAXXCAttributeElementType, XC_kAXXCAttributeElementBaseType, XC_kAXXCAttributeParent, XC_kAXXCAttributeTraits, XC_kAXXCAttributeIdentifier, XC_kAXXCAttributeAutomationType, XC_kAXXCAttributeLabel +2026-08-27 01:08:52.526 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Capturing hierarchy with parameters { + attributes = ( + 5003, + 5004, + 5002, + 2004, + 5019, + 5058, + 2001 + ); + maxArrayCount = 2147483647; + maxChildren = 2147483647; + maxDepth = 2147483647; + snapshotKeyHonorModalViews = 0; + traverseFromParentsToChildren = 1; +} +2026-08-27 01:08:52.526 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Snapshot attributes 5003, 5004, 5002, 2004, 5019, 5058, 2001 +2026-08-27 01:08:52.591 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got snapshot for {pid=64575} {uid=[ID:1 hash:0x0]} +2026-08-27 01:08:52.591 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Got app orientation 0 +2026-08-27 01:08:52.591 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] Captured accessibility snapshot data in 0.07s +2026-08-27 01:08:52.591 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] Checking 'ReactNativeBottomTabs' for privileged AX value slot attributes +2026-08-27 01:08:52.591 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] Found main window: Window +2026-08-27 01:08:52.591 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] Checking 'BottomTabs Example' for privileged AX value slot attributes +2026-08-27 01:08:52.591 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] Checking 'Native Bottom Tabs with Lazy' for privileged AX value slot attributes +2026-08-27 01:08:52.591 Df ReactTestApp[64575:8729fb2] [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:08:52.592 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] Checking 'Currently Playing Song' for privileged AX value slot attributes +2026-08-27 01:08:52.592 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] Checking '⏸' for privileged AX value slot attributes +2026-08-27 01:08:52.592 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] Checking '⏭' for privileged AX value slot attributes +2026-08-27 01:08:52.592 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] Checking 'Article' for privileged AX value slot attributes +2026-08-27 01:08:52.592 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] Checking 'Albums' for privileged AX value slot attributes +2026-08-27 01:08:52.592 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] Checking 'Contacts' for privileged AX value slot attributes +2026-08-27 01:08:52.592 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] Checking 'Chat' for privileged AX value slot attributes +2026-08-27 01:08:52.593 Df ReactTestApp[64575:8729fb2] [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:08:52.593 Df ReactTestApp[64575:8729fb2] [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:08:52.593 Df ReactTestApp[64575:8729fb2] [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:08:52.593 Df ReactTestApp[64575:8729fb2] [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:08:52.593 Df ReactTestApp[64575:8729fb2] [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:08:52.593 Df ReactTestApp[64575:8729fb2] [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:08:52.593 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: about to CFRunLoopPerform +2026-08-27 01:08:52.593 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting with 30.00s responsiveness timeout +2026-08-27 01:08:52.593 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: inside CFRunLoopPerform +2026-08-27 01:08:52.593 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[MT]: MT responded in time (won the race to the busy flag) +2026-08-27 01:08:52.593 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] XCTPerformOnMainRunLoop[not MT]: waiting 60.00s for work to complete +2026-08-27 01:08:52.593 Df ReactTestApp[64575:8728df6] [com.apple.dt.xctest:Default] XCTElementQuery: set data source for rootElementSnapshot to +2026-08-27 01:08:52.593 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] Finding all matches with input Application, pid: 64575, label: 'ReactNativeBottomTabs' using transformers +↪︎ Descendants matching type Any + ↪︎ Elements matching predicate 'label ==[c] "Marissa Castillo"' +2026-08-27 01:08:52.595 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] [Match All] applied transformer `Descendants matching type Any` to input {( + Application, pid: 64575, label: 'ReactNativeBottomTabs' +)}, found {( + Window (Main), + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + NavigationBar, identifier: 'Native Bottom Tabs with Lazy', + Other, + Toolbar, identifier: 'Toolbar', label: 'Toolbar', + Button, identifier: 'BackButton', label: 'BottomTabs Example', + StaticText, label: 'Native Bottom Tabs with Lazy', + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + TabBar, label: 'Tab Bar', + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Button, label: 'Article', Selected, + Button, label: 'Albums', + Button, label: 'Contacts', +2026-08-27 01:08:52.598 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] [Match All] applied transformer `Elements matching predicate 'label ==[c] "Marissa Castillo"'` to input {( + Window (Main), + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + NavigationBar, identifier: 'Native Bottom Tabs with Lazy', + Other, + Toolbar, identifier: 'Toolbar', label: 'Toolbar', + Button, identifier: 'BackButton', label: 'BottomTabs Example', + StaticText, label: 'Native Bottom Tabs with Lazy', + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + TabBar, label: 'Tab Bar', + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Other, + Button, label: 'Article', Selected, + Button, label: 'Albums', + Button, label: 'Contacts', Selected, + Button, label: 'Chat', + , found +2026-08-27 01:08:52.598 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] [Match All] setting out related elements in early return {( +)} +2026-08-27 01:08:52.606 Df ReactTestApp[64575:8729fb2] [com.apple.dt.xctest:Default] Current tree: +Application, 0x11a53a540, pid: 64575, label: 'ReactNativeBottomTabs' + Window (Main), 0x110a9b440 + Other, 0x110b3ba40 + Other, 0x11815a340 + Other, 0x110b601c0 + Other, 0x110baaa40 + Other, 0x108d268c0 + Other, 0x119c46fc0 + Other, 0x10d156140 + Other, 0x11a04edc0 + Other, 0x11a0b44c0 (error: (null)) +2026-08-27 01:08:53.803 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXAppAccessibility] Presentation controller doesn't modalize: <_UIRootPresentationController: 0x109613480> +2026-08-27 01:08:53.804 E ReactTestApp[64575:8728df6] [com.apple.UIKit:Assert] -[UIApplication statusBarStyle] API has been deprecated and is a no-op on 27.0 and later. +2026-08-27 01:08:53.820 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:08:53.820 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:08:54.654 E ReactTestApp[64575:8728df6] [com.apple.UIKit:Assert] -[UIApplication statusBarStyle] API has been deprecated and is a no-op on 27.0 and later. +2026-08-27 01:08:54.654 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:08:54.655 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:54.655 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:54.655 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:08:54.655 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:54.669 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:54.669 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:54.669 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:08:54.982 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXAppAccessibility] Presentation controller doesn't modalize: <_UIRootPresentationController: 0x1096f4280> +2026-08-27 01:08:54.982 E ReactTestApp[64575:8728df6] [com.apple.UIKit:Assert] -[UIApplication statusBarStyle] API has been deprecated and is a no-op on 27.0 and later. +2026-08-27 01:08:54.986 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:08:54.986 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:08:55.836 E ReactTestApp[64575:8728df6] [com.apple.UIKit:Assert] -[UIApplication statusBarStyle] API has been deprecated and is a no-op on 27.0 and later. +2026-08-27 01:08:55.837 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:08:55.837 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:08:55.838 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:08:55.838 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:09:01.042 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXAppAccessibility] Presentation controller doesn't modalize: <_UIRootPresentationController: 0x1096fb280> +2026-08-27 01:09:01.044 E ReactTestApp[64575:8728df6] [com.apple.UIKit:Assert] -[UIApplication statusBarStyle] API has been deprecated and is a no-op on 27.0 and later. +2026-08-27 01:09:01.053 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:09:01.053 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +[agent-device][mark][2026-08-27T00:09:01.127Z] after first lazy Contacts activation +2026-08-27 01:09:01.893 E ReactTestApp[64575:8728df6] [com.apple.UIKit:Assert] -[UIApplication statusBarStyle] API has been deprecated and is a no-op on 27.0 and later. +2026-08-27 01:09:01.894 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (4002) +2026-08-27 01:09:01.895 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:09:01.895 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (4002) error:0 data: +2026-08-27 01:09:01.897 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: +2026-08-27 01:09:01.903 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Attempting to send notification: (1025) +2026-08-27 01:09:01.903 I ReactTestApp[64575:8728df6] [com.apple.Accessibility:AXRuntimeNotifications] Did post notification. notification: (1025) error:0 data: diff --git a/artifacts/issue-547/before/logs/launch-console.log b/artifacts/issue-547/before/logs/launch-console.log new file mode 100644 index 00000000..7441f874 --- /dev/null +++ b/artifacts/issue-547/before/logs/launch-console.log @@ -0,0 +1,2 @@ +2026-08-27 01:07:41.004 ReactTestApp[64575:141725174] You've implemented -[ application:didReceiveRemoteNotification:fetchCompletionHandler:], but you still need to add "remote-notification" to the list of your supported UIBackgroundModes in your Info.plist. +objc[64575]: Class UIAccessibilityLoaderWebShared is implemented in both /private/var/run/com.apple.security.cryptexd/mnt/com.apple.iPhoneOS.SimulatorRuntime-v24.1.5390.6.rDKeNs/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 27.0.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/WebCore.axbundle/WebCore (0x10ccb8310) and /private/var/run/com.apple.security.cryptexd/mnt/com.apple.iPhoneOS.SimulatorRuntime-v24.1.5390.6.rDKeNs/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 27.0.simruntime/Contents/Resources/RuntimeRoot/System/Library/AccessibilityBundles/WebKit.axbundle/WebKit (0x10cc2c398). This may cause spurious casting failures and mysterious crashes. One of the duplicates must be removed or renamed. diff --git a/artifacts/issue-547/before/screenshots/contacts-loaded.png b/artifacts/issue-547/before/screenshots/contacts-loaded.png new file mode 100644 index 00000000..e0ca8236 Binary files /dev/null and b/artifacts/issue-547/before/screenshots/contacts-loaded.png differ diff --git a/artifacts/issue-547/before/screenshots/initial-article.png b/artifacts/issue-547/before/screenshots/initial-article.png new file mode 100644 index 00000000..c634873c Binary files /dev/null and b/artifacts/issue-547/before/screenshots/initial-article.png differ diff --git a/artifacts/issue-547/before/screenshots/post-transition.png b/artifacts/issue-547/before/screenshots/post-transition.png new file mode 100644 index 00000000..163071e5 Binary files /dev/null and b/artifacts/issue-547/before/screenshots/post-transition.png differ diff --git a/artifacts/issue-547/before/screenshots/pre-transition.png b/artifacts/issue-547/before/screenshots/pre-transition.png new file mode 100644 index 00000000..5fb9623f Binary files /dev/null and b/artifacts/issue-547/before/screenshots/pre-transition.png differ diff --git a/artifacts/issue-547/before/screenshots/transition-contact-sheet.png b/artifacts/issue-547/before/screenshots/transition-contact-sheet.png new file mode 100644 index 00000000..530e648a Binary files /dev/null and b/artifacts/issue-547/before/screenshots/transition-contact-sheet.png differ diff --git a/artifacts/issue-547/before/screenshots/white-flash-frame.png b/artifacts/issue-547/before/screenshots/white-flash-frame.png new file mode 100644 index 00000000..c80fc3e1 Binary files /dev/null and b/artifacts/issue-547/before/screenshots/white-flash-frame.png differ diff --git a/artifacts/issue-547/before/videos/first-lazy-contacts-review.mp4 b/artifacts/issue-547/before/videos/first-lazy-contacts-review.mp4 new file mode 100644 index 00000000..673ce86a Binary files /dev/null and b/artifacts/issue-547/before/videos/first-lazy-contacts-review.mp4 differ diff --git a/artifacts/issue-547/before/videos/first-lazy-contacts.gesture-telemetry.json b/artifacts/issue-547/before/videos/first-lazy-contacts.gesture-telemetry.json new file mode 100644 index 00000000..01809ba6 --- /dev/null +++ b/artifacts/issue-547/before/videos/first-lazy-contacts.gesture-telemetry.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "generatedAt": "2026-08-27T00:08:54.476Z", + "events": [ + { + "kind": "tap", + "tMs": 655.30810546875, + "x": 244, + "y": 822, + "referenceWidth": 402, + "referenceHeight": 874 + } + ] +} \ No newline at end of file diff --git a/artifacts/issue-547/before/videos/first-lazy-contacts.mp4 b/artifacts/issue-547/before/videos/first-lazy-contacts.mp4 new file mode 100644 index 00000000..1f7acaa5 Binary files /dev/null and b/artifacts/issue-547/before/videos/first-lazy-contacts.mp4 differ diff --git a/packages/react-native-bottom-tabs/ios/RCTTabViewComponentView.mm b/packages/react-native-bottom-tabs/ios/RCTTabViewComponentView.mm index 09ab604b..393e0fb4 100644 --- a/packages/react-native-bottom-tabs/ios/RCTTabViewComponentView.mm +++ b/packages/react-native-bottom-tabs/ios/RCTTabViewComponentView.mm @@ -42,7 +42,8 @@ lhs.hidden == rhs.hidden && lhs.testID == rhs.testID && lhs.role == rhs.role && - lhs.preventsDefault == rhs.preventsDefault; + lhs.preventsDefault == rhs.preventsDefault && + lhs.loaded == rhs.loaded; } bool operator!=(const RNCTabViewItemsStruct& lhs, const RNCTabViewItemsStruct& rhs) { @@ -213,8 +214,9 @@ - (void)updateProps:(Props::Shared const &)props oldProps:(Props::Shared const & iconRenderingMode:RCTNSStringFromStringNilIfEmpty(item.iconRenderingMode) hidden:item.hidden testID:RCTNSStringFromStringNilIfEmpty(item.testID) - role:RCTNSStringFromStringNilIfEmpty(item.role) + role:RCTNSStringFromStringNilIfEmpty(item.role) preventsDefault:item.preventsDefault + loaded:item.loaded ]; [result addObject:tabInfo]; diff --git a/packages/react-native-bottom-tabs/ios/TabItemEventModifier.swift b/packages/react-native-bottom-tabs/ios/TabItemEventModifier.swift index 674e602d..97edcd07 100644 --- a/packages/react-native-bottom-tabs/ios/TabItemEventModifier.swift +++ b/packages/react-native-bottom-tabs/ios/TabItemEventModifier.swift @@ -6,8 +6,13 @@ import UIKit #if !os(macOS) && !os(visionOS) +struct TabItemEventResult { + let preventsDefault: Bool + let isLoaded: Bool +} + private final class TabBarDelegate: NSObject, UITabBarControllerDelegate { - var onClick: ((_ index: Int?, _ identifier: String?) -> Bool)? + var onClick: ((_ index: Int?, _ identifier: String?) -> TabItemEventResult)? func tabBarController(_ tabBarController: UITabBarController, shouldSelect viewController: UIViewController) -> Bool { if #available(iOS 27.0, *) { @@ -36,7 +41,7 @@ private final class TabBarDelegate: NSObject, UITabBarControllerDelegate { // See: https://github.com/callstackincubator/react-native-bottom-tabs/issues/383 // Due to this, whether the tab prevents default has to be defined statically. if let index = tabBarController.viewControllers?.firstIndex(of: viewController) { - let defaultPrevented = onClick?(index, nil) ?? false + let defaultPrevented = onClick?(index, nil).preventsDefault ?? false return !defaultPrevented } @@ -54,15 +59,19 @@ private final class TabBarDelegate: NSObject, UITabBarControllerDelegate { tabBarController.selectedTab === tab || tabBarController.selectedTab?.identifier == tab.identifier - // Unfortunately, due to iOS 26 new tab switching animations, controlling state from JavaScript is causing significant delays when switching tabs. - // See: https://github.com/callstackincubator/react-native-bottom-tabs/issues/383 - // Due to this, whether the tab prevents default has to be defined statically. - let defaultPrevented = onClick?( + let result = onClick?( tabIndex(for: tab, in: tabBarController), tab.identifier - ) ?? false + ) + + if isReselectingSameTab || result?.preventsDefault == true { + return false + } - return isReselectingSameTab ? false : !defaultPrevented + // iOS 27 immediately displays the selected tab before React can mount a + // lazy scene. Keep the current scene visible until the first render + // updates the controlled selection, then use native selection as usual. + return result?.isLoaded ?? true } @available(iOS 18.0, tvOS 18.0, visionOS 2.0, *) @@ -74,7 +83,7 @@ private final class TabBarDelegate: NSObject, UITabBarControllerDelegate { } struct TabItemEventModifier: ViewModifier { - let onTabEvent: (_ index: Int?, _ identifier: String?, _ isLongPress: Bool) -> Bool + let onTabEvent: (_ index: Int?, _ identifier: String?, _ isLongPress: Bool) -> TabItemEventResult private let delegate = TabBarDelegate() func body(content: Content) -> some View { @@ -155,7 +164,7 @@ extension View { /** Event for tab items. Returns true if should prevent default (switching tabs). */ - func onTabItemEvent(_ handler: @escaping (Int?, String?, Bool) -> Bool) -> some View { + func onTabItemEvent(_ handler: @escaping (Int?, String?, Bool) -> TabItemEventResult) -> some View { modifier(TabItemEventModifier(onTabEvent: handler)) } } diff --git a/packages/react-native-bottom-tabs/ios/TabViewImpl.swift b/packages/react-native-bottom-tabs/ios/TabViewImpl.swift index 68053e1f..51a8ece1 100644 --- a/packages/react-native-bottom-tabs/ios/TabViewImpl.swift +++ b/packages/react-native-bottom-tabs/ios/TabViewImpl.swift @@ -49,7 +49,10 @@ struct TabViewImpl: View { .onTabItemEvent { index, identifier, isLongPress in let item = identifier.flatMap { props.filteredItems.findByKey($0) } ?? index.flatMap { props.filteredItems[safe: $0] } - guard let key = item?.key else { return false } + guard let item else { + return TabItemEventResult(preventsDefault: false, isLoaded: true) + } + let key = item.key if isLongPress { onLongPress(key) @@ -58,7 +61,10 @@ struct TabViewImpl: View { onSelect(key) emitHapticFeedback() } - return item?.preventsDefault ?? false + return TabItemEventResult( + preventsDefault: item.preventsDefault, + isLoaded: item.loaded + ) } #endif .introspectTabView { tabController in diff --git a/packages/react-native-bottom-tabs/ios/TabViewProvider.swift b/packages/react-native-bottom-tabs/ios/TabViewProvider.swift index e5663453..c139bf28 100644 --- a/packages/react-native-bottom-tabs/ios/TabViewProvider.swift +++ b/packages/react-native-bottom-tabs/ios/TabViewProvider.swift @@ -15,6 +15,7 @@ public final class TabInfo: NSObject { public let testID: String? public let role: TabBarRole? public let preventsDefault: Bool + public let loaded: Bool public init( key: String, @@ -27,7 +28,8 @@ public final class TabInfo: NSObject { hidden: Bool, testID: String?, role: String?, - preventsDefault: Bool = false + preventsDefault: Bool = false, + loaded: Bool ) { self.key = key self.title = title @@ -40,6 +42,7 @@ public final class TabInfo: NSObject { self.testID = testID self.role = TabBarRole(rawValue: role ?? "") self.preventsDefault = preventsDefault + self.loaded = loaded super.init() } } diff --git a/packages/react-native-bottom-tabs/src/TabView.tsx b/packages/react-native-bottom-tabs/src/TabView.tsx index 0acfb842..c2e7352f 100644 --- a/packages/react-native-bottom-tabs/src/TabView.tsx +++ b/packages/react-native-bottom-tabs/src/TabView.tsx @@ -35,6 +35,7 @@ import { BottomAccessoryView, type BottomAccessoryViewProps, } from './BottomAccessoryView'; +import { isRouteLoaded } from './isRouteLoaded'; const isAppleSymbol = (icon: any): icon is { sfSymbol: string } => icon?.sfSymbol; @@ -307,7 +308,7 @@ const TabView = ({ if (!loaded.includes(focusedKey)) { // Set the current tab to be loaded if it was not loaded before - setLoaded((loaded) => [...loaded, focusedKey]); + setLoaded((loadedRoutes) => [...loadedRoutes, focusedKey]); } const icons = React.useMemo( @@ -364,6 +365,7 @@ const TabView = ({ testID: getTestID?.({ route }), role: getRole?.({ route }), preventsDefault: getPreventsDefault?.({ route }), + loaded: isRouteLoaded(route, focusedKey, loaded, getLazy), }; }), [ @@ -380,6 +382,9 @@ const TabView = ({ getTestID, getRole, getPreventsDefault, + getLazy, + focusedKey, + loaded, ] ); @@ -479,7 +484,7 @@ const TabView = ({ labeled={labeled} > {trimmedRoutes.map((route) => { - if (getLazy({ route }) !== false && !loaded.includes(route.key)) { + if (!isRouteLoaded(route, focusedKey, loaded, getLazy)) { // Don't render a screen if we've never navigated to it return ( ; export interface TabViewProps extends ViewProps { diff --git a/packages/react-native-bottom-tabs/src/__tests__/index.test.tsx b/packages/react-native-bottom-tabs/src/__tests__/index.test.tsx index bf84291a..f644bde0 100644 --- a/packages/react-native-bottom-tabs/src/__tests__/index.test.tsx +++ b/packages/react-native-bottom-tabs/src/__tests__/index.test.tsx @@ -1 +1,29 @@ -it.todo('write a test'); +import { isRouteLoaded } from '../isRouteLoaded'; + +type Route = { + key: string; + lazy?: boolean; +}; + +const getLazy = ({ route }: { route: Route }) => route.lazy; + +describe('isRouteLoaded', () => { + it('loads the focused lazy route before it is persisted as loaded', () => { + expect(isRouteLoaded({ key: 'albums' }, 'albums', [], getLazy)).toBe(true); + }); + + it('keeps an unvisited lazy route unloaded', () => { + expect(isRouteLoaded({ key: 'albums' }, 'article', [], getLazy)).toBe( + false + ); + }); + + it('loads eager and previously visited routes', () => { + expect( + isRouteLoaded({ key: 'albums', lazy: false }, 'article', [], getLazy) + ).toBe(true); + expect( + isRouteLoaded({ key: 'albums' }, 'article', ['albums'], getLazy) + ).toBe(true); + }); +}); diff --git a/packages/react-native-bottom-tabs/src/isRouteLoaded.ts b/packages/react-native-bottom-tabs/src/isRouteLoaded.ts new file mode 100644 index 00000000..31b526bb --- /dev/null +++ b/packages/react-native-bottom-tabs/src/isRouteLoaded.ts @@ -0,0 +1,11 @@ +import type { BaseRoute } from './types'; + +export const isRouteLoaded = ( + route: Route, + focusedKey: string, + loaded: string[], + getLazy: (props: { route: Route }) => boolean | undefined +) => + getLazy({ route }) === false || + route.key === focusedKey || + loaded.includes(route.key);