Skip to content

device_deeplink

Open a deep link or universal URL on the booted simulator/emulator. Cross-platform: wraps xcrun simctl openurl (iOS) and adb shell am start -a VIEW -d (Android). Session-less — no need to call device_snapshot action=open first. Use to enter the app at a specific route when cdp_navigate is unavailable (RN 0.83 Bridgeless mode) or for universal-link testing.

NameTypeRequiredDefaultConstraintsDescription
urlstringYesURL to open, e.g. “myapp://claims/new” or “https://example.com/page”.
platform`enum: iosandroid`No
packageNamestringNo(Android only) Explicit package/activity, e.g. “com.example/.MainActivity”. Usually not needed — intent resolution picks the right app.
device_deeplink(url: <string>)