Example #1
0
 private void DriverQuit()
 {
     _appiumMetaPilot?.DriverQuit();
     _appiumMetaPilot = null;
 }
Example #2
0
 public bool StartDevice(DeviceTarget deviceTarget, string packagePath, string appiumHost, int appiumPort, string aaptPath)
 {
     _appiumMetaPilot = new AppiumMetaPilot(deviceTarget, packagePath, appiumHost, appiumPort, aaptPath);
     return(!(_appiumMetaPilot == null || (_appiumMetaPilot != null && _appiumMetaPilot.AppiumDriver == null)));
 }