Skip to main content

Open Apps

phone.open_app("Safari")
phone.open_app("Settings")
phone.open_app("Instagram")
Use the exact display name as shown on the home screen. Names are case-sensitive.

Type Text

phone.type_text("Hello world")                    # Simulate keystrokes
phone.type_text("https://example.com", method="paste")  # Paste from clipboard
MethodDescription
"keys" (default)Simulates individual key presses. Works everywhere, slower for long text.
"paste"Uses clipboard. Fast for long text, may not work in all contexts.

Run Shortcuts

phone.run_shortcut(name="My Shortcut")  # By name
phone.run_shortcut(index=0)             # By position (0-based)
Shortcuts run without input parameters. For shortcuts needing input, set up data beforehand (clipboard, files) or create a wrapper shortcut.