You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pull down the "Safari" menu and choose "Preferences"
Click on the "Advanced" tab
Check the box next to "Show Develop menu in menu bar"
Pull down the "Develop" menu
Click on "Simulator" that should be right below your computer
Select your WebView in the menu
Steps Android (~3min)
In your android/app/src/main/java/com/applilabchatbot/MainApplication.java add import android.webkit.WebView; in the imports and the following line in your onCreate method:
To inject Javascript you have to set your WebView's javaScriptEnabled prop to true
On Android, you can't use arrow functions in the injected javascript
window.postMessage might not be available straight away in your injected Javascript, to make sure it's the case you can wrap your injected code by a setTimeout like this:
setTimeout(function(){/* your injected js goes here */},0)