public string StopRecordingScreen(IScreenRecordingOptions options) { var parameters = new Dictionary <string, object> { { "options", options.GetParameters() } }; return(Execute(AppiumDriverCommand.StopRecordingScreen, parameters).Value.ToString()); }
public string StopRecordingScreen(IScreenRecordingOptions options) { var parameters = AppiumCommandExecutionHelper.PrepareArgument("options", options.GetParameters()); return(Execute(AppiumDriverCommand.StopRecordingScreen, parameters).Value.ToString()); }