我的屏幕上有多个不同的按钮accessibilityLabel
。
<Button accessibilityLabel="First label">First</Button>
<Button accessibilityLabel="Second label">Second</Button>
查询getByRole
忽略指定可访问性标签的第二个参数(在非本地测试库中可以正常工作)。
getByRole('button', { name: 'First label' })
如何同时通过角色和标签查询元素?