frida-uiwebview
v4.0.0
Published
Inspect and manipulate UIWebView-hosted GUIs through Frida
Downloads
98
Readme
frida-uiwebview
Inspect and manipulate UIWebView-hosted GUIs through Frida.
Example
import ui from 'frida-uikit';
import web from 'frida-uiwebview';
const webView = await ui.get(node => node.type === 'UIWebView');
const loginButton = await web.get(webView, node => node.text === 'Log in to Spotify');
loginButton.click();