Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/nowsecure/frida-uiwebview

Inspect and manipulate UIWebView-hosted GUIs through Frida.
https://github.com/nowsecure/frida-uiwebview

frida nowsecure webview

Last synced: 3 months ago
JSON representation

Inspect and manipulate UIWebView-hosted GUIs through Frida.

Lists

README

        

# frida-uiwebview

Inspect and manipulate UIWebView-hosted GUIs through [Frida](https://www.frida.re).

## Example

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