Search code examples
react-nativedetox

How can I controle React-Native webview in Detox?


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? enter image description here

If you give the correct answer, you are a nice guy.


Solution

  • 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 😀