Inspect and manipulate UIWebView-hosted GUIs through Frida.
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();