Skip to content

Commit 05d23e6

Browse files
committed
test: add missing testIDs for maestro selectors
Add testID to WalletListMenuModal rows (walletListMenu_<value>) so the wallet options menu (Resync, etc.) is drivable by automated UI tests. The row labels render via UnscaledText, which does not expose matchable accessibility text, so the rows previously had no stable selector. Claude-Session: https://claude.ai/code/session_01NWSBgjqm8PkwCp8ziCrgX1
1 parent 1811696 commit 05d23e6

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/components/modals/WalletListMenuModal.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,7 @@ export function WalletListMenuModal(props: Props): React.JSX.Element {
337337
return (
338338
<EdgeTouchableOpacity
339339
key={option.value}
340+
testID={`walletListMenu_${option.value}`}
340341
onPress={async () => {
341342
await optionAction(option.value)
342343
}}

0 commit comments

Comments
 (0)