Trusted answers to developer questions

How to debug React Native WebView

Get the Learn to Code Starter Pack

Break into tech with the logic & computer science skills you’d learn in a bootcamp or university — at a fraction of the cost. Educative's hand-on curriculum is perfect for new learners hoping to launch a career.

The core logic of my React Native app involves using WebViews because I need to access the HTML5 canvas. Whilst developing this code, there are bound to be errors and issues with the WebView code. Figuring out how to debug code within the WebView isn’t so obvious.

Figure 1
Figure 1

Option 1: Chrome inspect

  • Start your Expo/React Native app*.
  • Open chrome and then go to chrome://inspect.
  • Then, click on the inspect button and on the top link to open the latest WebView, you should see something similar to Figure 2.
  • You should see something similar to Figure 1. Now, you can explore the WebView like a normal web page.
Figure 2
Figure 2

Option 2: React Native Debugger

Alternatively, you can access this page using the React Native Debugger page in chrome.

  • Start your Expo/React Native app*
  • Go to your React Native debugger on chrome. In my case, since I’m using Expo, my URL is http://192.168.27.128:19001/debugger-ui/
  • Go to the three dots button (next to close button) > More tools > Remote devices
  • At the bottom, you’ll see another panel open up
  • You should be able to see your Android device in the list
  • Hit the Inspect button, which is the first item (this will be the latest)
  • Now, you can explore the WebView like a normal web page

Debugging

So, I have found that the closest way to debug the WebView is to use the console.log statements that will appear in the DevTools console. In the normal React Native debugger console, you won’t be able to see any console.log statements from the WebView. You can only view them by exploring DevTools for Remote devices. As far as I can tell, you cannot use breakpoints in WebViews, but this is still better than nothing.

Appendix

Make sure to do this on the same machine/host that is running the emulator. For example, a Genymotion VM is running on my Windows machine, but I can still see it’s WebViews on the Chrome inspect URL. This can be seen in Figure 3.

widget

RELATED TAGS

react
react native
debug
web view

CONTRIBUTOR

Attributions:
  1. undefined by undefined
Did you find this helpful?