I can't find a way to control the React-Native Webview at https://github.com/wix/detox.
and There is another question,
Do you know how to press the Back button in React-Navigatoin?
If you give the correct answer, you are a nice guy.
You cannot interact RN webView with detox, platform limitations from iOS, Android. Refer to these. https://github.com/wix/detox/issues/136#issuecomment-306591554 https://github.com/wix/detox/issues/334#issuecomment-335802212
To press Back button in iOS:
element(by.type('_UINavigationBarBackIndicatorView')).tap();
To press Back button in Android:
device.pressBack()
I'm trying to be a nice guy 😀