You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
adb shell am start -n "io.appium.settings/io.appium.settings.Settings" -a io.appium.settings.recording.ACTION_START --es "recording_filename""abc.mp4"
336
+
adb shell am start -n "io.appium.settings/io.appium.settings.Settings" -a io.appium.settings.recording.ACTION_START --es "recording_filename""abc.mp4" --es "recording_priority" 0 --es "recording_max_duration" 900
337
337
```
338
338
339
+
### Arguments (see above start command as an example for giving arguments)
340
+
- recording_filename (Mandatory) - You can type recording video file name as you want, but recording currently supports only "mp4" format so your filename must end with ".mp4"
341
+
- recording_priority (Optional) - Default value: 0 which means recording thread priority is Maximum hovewer if you face performance drops during testing with recording enabled, you can reduce recording priority to 2 - Normal or 1 - Minimum
342
+
- recording_max_duration (Optional) - Default value: 900 which means maximum allowed duration is 15 minute, you can increase it if your test takes longer than that
343
+
339
344
Stop Recording:
340
345
```bash
341
346
adb shell am start -n "io.appium.settings/io.appium.settings.Settings" -a io.appium.settings.recording.ACTION_STOP
0 commit comments