Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 366 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 366 Bytes

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();