Appium-Start Recording Screen(开始录制屏幕)

吴子昂
2023-12-01


Start recording screen

Example Usage
Javadriver.startRecordingScreen();
driver.startRecordingScreen(new BaseStartScreenRecordingOptions(…));
Pythonself.driver.start_recording_screen()
Javascript// webdriver.io example
driver.startRecordingScreen();
// wd example
await driver.startRecordingScreen();
Ruby# ruby_lib example
start_recording_screen
start_recording_screen video_size: '1280x720', time_limit: '180', bit_rate: '5000000' # Android
start_recording_screen video_type:'h264', time_limit: '260' # iOS
# ruby_lib_core example
@driver.get_performance_data_types
C#driver.StartRecordingScreen(
AndroidStartScreenRecordingOptions.GetAndroidStartScreenRecordingOptions()
.WithTimeLimit(TimeSpan.FromSeconds(10))
.WithBitRate(500000)
.WithVideoSize("720x1280"));
PHP// TODO PHP sample
Support
Appium Server
PlatformDriverPlatform VersionsAppium VersionDriver Version
iOSXCUITest9.3+1.6.0+All
UIAutomationNoneNoneNone
AndroidEspresso?+1.9.0+All
UiAutomator2?+1.6.0+All
UiAutomator4.3+AllAll
MacMacNoneNoneNone
WindowsWindowsNoneNoneNone
Appium Clients
LanguageSupportDocumentation
JavaAllappium.github.io
PythonNoneappium.github.io
Javascript (WebdriverIO)All
Javascript (WD)Allgithub.com
RubyAllwww.rubydoc.info
PHPNonegithub.com
C#Nonegithub.com
HTTP API Specifications
Endpoint

POST /session/:session_id/appium/start_recording_screen

URL Parameters
namedescription
session_idID of the session to route the command to
JSON Parameters
nametypedescription
optionsobjectThe following parameters of the action
options.remotePathstringThe path to the remote location, where the resulting video should be uploaded. The following protocols are supported http/https, ftp. Null or empty string value (the default setting) means the content of resulting file should be encoded as Base64 and passed as the endpoint response value. An exception will be thrown if the generated media file is too big to fit into the available process memory. This option only has an effect if there is screen recording process in progress and forceRestart parameter is not set to true.
options.usernamestringThe name of the user for the remote authentication.
options.passwordstringThe password for the remote authentication.
options.methodstringThe http multipart upload method name. The ‘PUT’ one is used by default.
options.forceRestartbooleanWhether to try to catch and upload/return the currently running screen recording (false, the default setting on server) or ignore the result of it and start a new recording immediately (true).
options.timeLimitstringRecording time. 180 seconds is by default.
options.videoTypestring(iOS Only) The format of the screen capture to be recorded. Available formats are the output of ffmpeg -codecs such as libx264 and mpeg4. Defaults to mjpeg.
options.videoQualitystring(iOS Only) The video encoding quality (low, medium, high, photo - defaults to medium).
options.videoFpsstring(iOS Only) The Frames Per Second rate of the recorded video. Change this value if the resulting video is too slow or too fast. Defaults to 10. This can decrease the resulting file size.
options.videoScalestring(iOS Only) The scaling value to apply. Read https://trac.ffmpeg.org/wiki/Scaling for possible values. Example value of 720p scaling is ‘1280:720’. This can decrease/increase the resulting file size. No scale is applied by default.
options.bitRatestring(Android Only) The video bit rate for the video, in megabits per second. 4 Mbp/s(4000000) is by default for Android API level below 27. 20 Mb/s(20000000) for API level 27 and above.
options.videoSizestring(Android Only) The format is widthxheight. The default value is the device’s native display resolution (if supported), 1280x720 if not. For best results, use a size supported by your device’s Advanced Video Coding (AVC) encoder. For example, “1280x720”
options.bugReportstring(Android Only) Set it to true in order to display additional information on the video overlay, such as a timestamp, that is helpful in videos captured to illustrate bugs. This option is only supported since API level 27 (Android O).
Response

null

 类似资料: