I know I can simulate a button tap with something like:
buttonObj.sendActions(for: .touchUpInside)
but that actually taps the button and doesn't activate the element for VoiceOver. I want to programmatically tap the element as if a user taps on it with their finger while VoiceOver is on - so VoiceOver should start reading the accessibilityLabel
of the item, but not actually perform the action of the item yet.