Support story play function
Is your feature request related to a problem? Please describe.
Storybook serves as the main entry point of validation for a component.
Adding support for automated interactions increases the coverage of component's behaviours, while also serving as a catalogue to which interactions a component has available.
Describe the solution you'd like A similar behaviour to Storybook web.
Are you able to assist bring the feature to reality? I can try to
Additional context Play function docs
the play function functionality isn't possible in exactly the same way since we can't make queries on the react tree like we could with the dom.
the alternative would be to build some kind of test automatically based on the play function contents, something with maestro or detox for example
Maybe it could be easier to integrate with detox() because their modular design is more similar to react-testing-library.
Yes I agree, the solution needs to have a js based api (like detox), this is something that maestro can't really do for example.
The problem is that detox isn't really that straight forward to setup and it makes things a bit awkward, for example to do a setup guide or automate a setup.
B