Try starting the appium software server for mac os, including the automation of the webkit debugging proxy, which is necessary for debugging.
//customize the below in start server method //Webkit Proxy command CommandLine iOSProxyCommand = new CommandLine("ios_webkit_debug_proxy"); iOSProxyCommand.addArgument("-c"); iOSProxyCommand.addArgument(udid+":27753");//provide your udid of the device iOSProxyCommand.addArgument("-F");//to disable console output in eclipse DefaultExecuteResultHandler iOSProxyresultHandler = new DefaultExecuteResultHandler(); DefaultExecutor iOSProxyexecutor = new DefaultExecutor(); iOSProxyexecutor.setExitValue(1); try { iOSProxyexecutor.execute(iOSProxyCommand, iOSProxyresultHandler); iOSProxyCommand.toString())); Thread.sleep(5000); System.out.println("iOS Proxy started."); } catch (IOException e) { e.printStackTrace(); } catch (InterruptedException e) { e.printStackTrace(); } CommandLine command = new CommandLine( "/Applications/Appium.app/Contents/Resources/node/bin/node"); command.addArgument( "/Applications/Appium.app/Contents/Resources/node_modules/appium/bin/appium.js", false); command.addArgument("--address", false); command.addArgument("127.0.0.1"); command.addArgument("--port", false); command.addArgument("4723"); command.addArgument("--full-reset", false); command.addArgument("--log-level", false);//to disable console output in eclipse command.addArgument("error"); command.addArgument("--log", false); Timestamp currentTimestamp = new java.sql.Timestamp(Calendar.getInstance().getTime().getTime()); command.addArgument("/Users/sethupandi/appium"+currentTimestamp+".log"); DefaultExecuteResultHandler resultHandler = new DefaultExecuteResultHandler(); DefaultExecutor executor = new DefaultExecutor(); executor.setExitValue(1); try { executor.execute(command, resultHandler); Thread.sleep(5000); System.out.println("Appium server started."); } catch (IOException e) { e.printStackTrace(); } catch (InterruptedException e) { e.printStackTrace(); } } //customize the below in stop appium server- //kill appium node after end of your execution String[] command = { "/usr/bin/killall", "-9", "node" }; try { Runtime.getRuntime().exec(command); System.out.println("Appium server stopped."); } catch (IOException e) { e.printStackTrace(); } //Kill webkit proxy for iOS String[] commandProxy = { "/usr/bin/killall", "-9", "ios_webkit_debug_proxy" }; try { Runtime.getRuntime().exec(commandProxy); System.out.println("iOS Webkit proxy stopped"); } catch (IOException e) { e.printStackTrace(); }
source share