Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 376 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 376 Bytes

frida-uiwebview

Inspect and manipulate UIWebView-hosted GUIs through Frida.

Example

const ui = require('frida-uikit');
const web = require('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();