/frida-uikit

Inspect and manipulate UIKit-based GUIs through Frida.

Primary LanguageJavaScriptMIT LicenseMIT

frida-uikit

Inspect and manipulate UIKit-based GUIs through Frida.

Example

const ui = require('frida-uikit');

const username = await ui.get(node => node.type === 'UITextField');
username.setText('john.doe');