Fire Event API
For common events like press or type it's recommended to use User Event API as it offers
more realistic event simulation by emitting a sequence of events with proper event objects that mimic React Native runtime behavior.
Use Fire Event for cases not supported by User Event and for triggering event handlers on composite components.
The fireEvent API allows you to trigger all kinds of event handlers on both host and composite components. It will try to invoke a single event handler traversing the component tree bottom-up from passed element and trying to find enabled event handler named onXxx when xxx is the name of the event passed.
Unlike User Event, this API does not automatically pass event object to event handler, this is responsibility of the user to construct such object.
Please note that from version 7.0 fireEvent performs checks that should prevent events firing on disabled elements.
An example using fireEvent with native events that aren't already aliased by the fireEvent api.
FireEvent exposes convenience methods for common events like: press, changeText, scroll.
fireEvent.press
It is recommended to use the User Event press() helper instead as it offers more realistic simulation of press interaction, including pressable support.
Invokes press event handler on the element or parent element in the tree.
fireEvent.changeText
It is recommended to use the User Event type() helper instead as it offers more realistic simulation of text change interaction, including key-by-key typing, element focus, and other editing events.
Invokes changeText event handler on the element or parent element in the tree.
fireEvent.scroll
Invokes scroll event handler on the element or parent element in the tree.
On a ScrollView
Prefer using user.scrollTo over fireEvent.scroll for ScrollView, FlatList, and SectionList components. User Event provides a more realistic event simulation based on React Native runtime behavior.
