Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 269
OM62DwC76p Avatar asked Oct 12 '25 20:10

OM62DwC76p


1 Answers

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 😀

like image 108
vk.4884 Avatar answered Oct 14 '25 11:10

vk.4884