How to turn off appium studio reporting

Hi,

I have used below code to start appium driver

capabilities.SetCapability("reportDirectory", Application.ExecutablePath);
					capabilities.SetCapability("reportFormat", "xml");
					capabilities.SetCapability("testName", "testName");
					capabilities.SetCapability("deviceName", deviceName);
					capabilities.SetCapability(MobileCapabilityType.Udid, UDID);
					capabilities.SetCapability("instrumentApp", "true");
					capabilities.SetCapability(IOSMobileCapabilityType.BundleId, bundleID);
					driver_Android = new IOSDriver<IOSElement>(new Uri("http://localhost:4723/wd/hub"), capabilities);

I have my own reporting and I want appium studio driver should not create any reports so that my test case will run fast. Can you please let me know how to turn off reporting in appium studio driver?

hi,

use the following line -

capabilities.SetCapability('report.disable",true);

and dismiss the lines that have to do with reporting

capabilities.SetCapability("reportDirectory", Application.ExecutablePath);
					capabilities.SetCapability("reportFormat", "xml");
					capabilities.SetCapability("testName", "testName")