Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 251 Bytes

README.md

File metadata and controls

12 lines (8 loc) · 251 Bytes

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