Parallel Execution fails for android emulators on different Appium ports

Hi,

Parallel execution on 2 android emulators fail due to the reason “Error : Could not start a new session. Possible causes are invalid address of the remote server or browser start-up failure”. Below are my server setup and capabilities. It is running fine when executing on individual emulators. When looking into the log, I see that connection is getting established for only one appium host. Could someone help me out in fixing the issue? I am starting the appium server on ports 4727 and 4728.

public void APM_Server(String devicename, String server_port, String emu_port, boolean isreal) throws ExecuteException, IOException,InterruptedException
{
ServerArguments server = new ServerArguments();
String APM_Home = System.getenv(“APPIUM_PATH”);
server.setArgument("–address", APM_HOST);
server.setArgument("–port", server_port);
server.setArgument("–no-reset", false);
server.setArgument("–local-timezone", true);
server.setArgument("–bootstrap-port", String.valueOf(Integer.valueOf(server_port)+1));
server.setArgument("–session-override", false);
server.setArgument("–log", APPIUM_LOG);
if (isreal) //check if the device is a physical device or emulator
server.setArgument("–device-name", devicename);
else
server.setArgument("–device-name", “emulator-”+emu_port); //eg: emulator-5554 (name in AVD is testdevice)
apmServer = new AppiumServer(new File(APM_Home),server);
apmServer.stopServer();
long start_time=System.currentTimeMillis();
apmServer.startServer(180000);
while(!apmServer.isServerRunning()){}
long end_time=System.currentTimeMillis();
System.out.println(“Appium Server Started!”);
System.out.println(“Appium Server took - '” + (end_time-start_time)/1000 + “’ seconds to start”);
}

Appium Capabilities:

            //Define the capabilities to use the local Appium server
            capabilities = new DesiredCapabilities();
                            
            //Define the device to work on
            capabilities.setCapability(CapabilityType.BROWSER_NAME,"");
            capabilities.setCapability("platformName", device_os);
            capabilities.setCapability(MobileCapabilityType.NEW_COMMAND_TIMEOUT, 120);
            capabilities.setCapability("deviceName",device);
            capabilities.setCapability("appPackage", "com.android.calculator2");
            capabilities.setCapability("appActivity", "com.android.calculator2.Calculator");
            and_driver = new AndroidDriver(new URL(url), capabilities);

Below is the console output:

[2015-10-06 15:35:18,947] [main] [INFO ] - SeleniumLogWrapper Logging initialized
[2015-10-06 15:35:18,963] [main] [INFO ] - SeleniumLogWrapper Logging initialized
[2015-10-06 15:35:18,969] [main] [INFO ] - SeleniumLogWrapper Logging initialized
[2015-10-06 15:35:18,979] [main] [INFO ] - SeleniumLogWrapper Logging initialized
[2015-10-06 15:35:18,985] [main] [INFO ] - PMTestNGSuite :: main() method invoked… Demo to Team
[2015-10-06 15:35:18,990] [main] [INFO ] - CleanPMReportsDir(), cleaned .\test-output\Perfecto_Reports successfully
[2015-10-06 15:35:18,991] [main] [INFO ] - ApplicationManager :: updateAppBuildDetails(), Updating the application details in AppInfoBuild.properties file
[2015-10-06 15:35:18,991] [main] [INFO ] - PropertyUtility :: getAppInstallProperty, invoked…
[2015-10-06 15:35:18,992] [main] [INFO ] - PropertyUtility :: getAppInstallProperty, propertyKey:ios_build_prop_url, propertyValue:null
[2015-10-06 15:35:18,992] [main] [INFO ] - PropertyUtility :: getAppInstallProperty, invoked…
[2015-10-06 15:35:18,993] [main] [INFO ] - PropertyUtility :: getAppInstallProperty, propertyKey:android_build_prop_url, propertyValue:https://mstg.verizon.com/mobileapps/android/ThebeX/auto_testing
[2015-10-06 15:35:18,993] [main] [INFO ] - PropertyUtility :: getAppInstallProperty, invoked…
[2015-10-06 15:35:18,994] [main] [INFO ] - PropertyUtility :: getAppInstallProperty, propertyKey:dev_prop_fname, propertyValue:build_info.prop
[2015-10-06 15:35:18,995] [main] [ERROR] - ApplicationManager :: updateAppBuildDetails(), Exception - null
[2015-10-06 15:35:18,998] [main] [INFO ] - cleanTestReportFolder(), cleaned successfully
[2015-10-06 15:35:18,998] [main] [INFO ] -
[2015-10-06 15:35:18,998] [main] [INFO ] - *** Displaying command line arguments ***
[2015-10-06 15:35:18,999] [main] [INFO ] - PMTestNGSuite :: main() arg[0] : PMTestNGSuite
[2015-10-06 15:35:18,999] [main] [INFO ] - PMTestNGSuite :: main() arg[1] : appium
[2015-10-06 15:35:18,999] [main] [INFO ] - PMTestNGSuite :: main() arg[2] : testdevice;testdevice1
[2015-10-06 15:35:18,999] [main] [INFO ] -
[2015-10-06 15:35:18,999] [main] [INFO ] - devOS:testdevice;testdevice1
[2015-10-06 15:35:18,999] [main] [INFO ] - PropertyUtility :: getEnvironmentProperty, invoked…
[2015-10-06 15:35:19,000] [main] [INFO ] - PropertyUtility :: getEnvironmentProperty, propertyKey:pm_host, propertyValue:perfectocmb.verizon.com
[2015-10-06 15:35:19,000] [main] [INFO ] - PropertyUtility :: getEnvironmentProperty, invoked…
[2015-10-06 15:35:19,001] [main] [INFO ] - PropertyUtility :: getEnvironmentProperty, propertyKey:pm_user, propertyValue:[email protected]
[2015-10-06 15:35:19,001] [main] [INFO ] - PropertyUtility :: getEnvironmentProperty, invoked…
[2015-10-06 15:35:19,002] [main] [INFO ] - PropertyUtility :: getEnvironmentProperty, propertyKey:pm_password, propertyValue:PMDevOps123
[2015-10-06 15:35:19,002] [main] [INFO ] - PropertyUtility :: getEnvironmentProperty, invoked…
[2015-10-06 15:35:19,003] [main] [INFO ] - PropertyUtility :: getEnvironmentProperty, propertyKey:appium_port, propertyValue:4727
[2015-10-06 15:35:19,003] [main] [INFO ] - PropertyUtility :: getEnvironmentProperty, invoked…
[2015-10-06 15:35:19,004] [main] [INFO ] - PropertyUtility :: getEnvironmentProperty, propertyKey:emulator_port, propertyValue:5554
[testdevice, testdevice1]
[2015-10-06 15:35:19,005] [main] [INFO ] - PMTestNGSuite :: testngXMLSuiteGenerate(), creating XmlSuite for testdevice;testdevice1
[2015-10-06 15:35:19,009] [main] [INFO ] - PMTestNGSuite :: testngXMLSuiteGenerate(), adding listeners for testdevice;testdevice1
Warning: Cannot read name ranges for LOCAL_DATE_SEPARATOR - setting to empty
Warning: Cannot read name ranges for LOCAL_DAY_FORMAT - setting to empty
Warning: Cannot read name ranges for LOCAL_HOUR_FORMAT - setting to empty
Warning: Cannot read name ranges for LOCAL_MINUTE_FORMAT - setting to empty
Warning: Cannot read name ranges for LOCAL_MONTH_FORMAT - setting to empty
Warning: Cannot read name ranges for LOCAL_MYSQL_DATE_FORMAT - setting to empty
Warning: Cannot read name ranges for LOCAL_SECOND_FORMAT - setting to empty
Warning: Cannot read name ranges for LOCAL_TIME_SEPARATOR - setting to empty
Warning: Cannot read name ranges for LOCAL_YEAR_FORMAT - setting to empty
[2015-10-06 15:35:19,167] [main] [INFO ] - MyFiosUtility :: GetHeaderColumn() invoked…
[2015-10-06 15:35:19,167] [main] [INFO ] - MyFiosUtility :: GetHeaderColumn() invoked…
[2015-10-06 15:35:25,543] [main] [INFO ] - PMTestNGSuite :: testngXMLSuiteGenerate(), running test for testdevice;testdevice1, devids:testdevice
[2015-10-06 15:35:29,654] [main] [INFO ] - PMTestNGSuite :: testngXMLSuiteGenerate(), running test for testdevice;testdevice1, devids:testdevice1
[2015-10-06 15:35:29,851] [main] [INFO ] - SeleniumLogWrapper Logging initialized
[2015-10-06 15:35:29,855] [main] [INFO ] - SeleniumLogWrapper Logging initialized
[2015-10-06 15:35:29,859] [main] [INFO ] - SeleniumLogWrapper Logging initialized
[TestNG] Running:
Command line suite

Warning: Cannot read name ranges for LOCAL_DATE_SEPARATOR - setting to empty
Warning: Cannot read name ranges for LOCAL_DAY_FORMAT - setting to empty
Warning: Cannot read name ranges for LOCAL_HOUR_FORMAT - setting to empty
Warning: Cannot read name ranges for LOCAL_MINUTE_FORMAT - setting to empty
Warning: Cannot read name ranges for LOCAL_MONTH_FORMAT - setting to empty
Warning: Cannot read name ranges for LOCAL_MYSQL_DATE_FORMAT - setting to empty
Warning: Cannot read name ranges for LOCAL_SECOND_FORMAT - setting to empty
Warning: Cannot read name ranges for LOCAL_TIME_SEPARATOR - setting to empty
Warning: Cannot read name ranges for LOCAL_YEAR_FORMAT - setting to empty
Warning: Cannot read name ranges for LOCAL_DATE_SEPARATOR - setting to empty
Warning: Cannot read name ranges for LOCAL_DAY_FORMAT - setting to empty
Warning: Cannot read name ranges for LOCAL_HOUR_FORMAT - setting to empty
Warning: Cannot read name ranges for LOCAL_MINUTE_FORMAT - setting to empty
Warning: Cannot read name ranges for LOCAL_MONTH_FORMAT - setting to empty
Warning: Cannot read name ranges for LOCAL_MYSQL_DATE_FORMAT - setting to empty
Warning: Cannot read name ranges for LOCAL_SECOND_FORMAT - setting to empty
Warning: Cannot read name ranges for LOCAL_TIME_SEPARATOR - setting to empty
Warning: Cannot read name ranges for LOCAL_YEAR_FORMAT - setting to empty
startRow=0, endRow=3, startCol=0, endCol=3
startRow=0, endRow=3, startCol=0, endCol=3
[2015-10-06 15:35:30,048] [TestNG] [INFO ] - EndecaSearch :: beforeMethod() method invoked…
[2015-10-06 15:35:30,048] [TestNG] [INFO ] - EndecaSearch :: beforeMethod() method invoked…
[2015-10-06 15:35:30,049] [TestNG] [INFO ] - PropertyUtility :: getEnvironmentProperty, invoked…
[2015-10-06 15:35:30,049] [TestNG] [INFO ] - PropertyUtility :: getEnvironmentProperty, invoked…
[2015-10-06 15:35:30,050] [TestNG] [INFO ] - PropertyUtility :: getEnvironmentProperty, propertyKey:appium_server_android, propertyValue:127.0.0.1
[2015-10-06 15:35:30,050] [TestNG] [INFO ] - PropertyUtility :: getEnvironmentProperty, propertyKey:appium_server_android, propertyValue:127.0.0.1
Oct 06, 2015 3:35:30 PM com.github.genium_framework.appium.support.server.AppiumServer stopServer
INFO: Stopping the server with the command: cmd /c echo off & FOR /F “usebackq tokens=5” %a in (netstat -nao ^| findstr /R /C:"4728 ") do (FOR /F “usebackq” %b in (TASKLIST /FI "PID eq %a" ^| findstr /I node.exe) do taskkill /F /PID %a)
Oct 06, 2015 3:35:30 PM com.github.genium_framework.appium.support.server.AppiumServer stopServer
INFO: Stopping the server with the command: cmd /c echo off & FOR /F “usebackq tokens=5” %a in (netstat -nao ^| findstr /R /C:"4728 ") do (FOR /F “usebackq” %b in (TASKLIST /FI "PID eq %a" ^| findstr /I node.exe) do taskkill /F /PID %a)
Oct 06, 2015 3:35:30 PM com.github.genium_framework.appium.support.server.AppiumServer stopServer
INFO: Server stopping output:
Oct 06, 2015 3:35:30 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server is starting…
Oct 06, 2015 3:35:30 PM com.github.genium_framework.appium.support.server.AppiumServer stopServer
INFO: Server stopping output:
Oct 06, 2015 3:35:30 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server is starting…
Oct 06, 2015 3:35:31 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:31 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:33 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:33 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:35 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:35 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:37 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:37 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:39 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:39 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:41 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:41 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:43 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:43 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:45 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:45 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:47 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:47 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:49 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:49 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:51 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:51 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:53 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:53 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:55 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:55 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:57 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:57 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:59 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:35:59 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:01 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:01 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:03 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:03 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:05 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:05 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:07 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:07 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:09 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:09 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:11 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:11 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:13 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:13 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:15 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:15 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:17 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:17 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:19 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:19 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:21 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:21 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:23 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:23 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:25 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:25 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:27 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:28 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:29 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:30 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:31 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:32 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:33 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:34 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:35 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:36 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:37 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:38 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:39 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:40 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:41 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:42 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:43 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:44 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:45 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:46 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:47 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:48 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:49 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:50 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:51 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:52 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:53 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:54 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:55 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:56 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:57 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:58 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:36:59 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:00 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:01 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:02 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:03 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:04 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:05 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:06 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:07 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:08 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:09 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:10 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:12 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:12 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:14 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:14 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:16 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:16 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:18 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:18 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:20 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:20 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:22 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:22 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:24 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:24 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:26 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:26 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:28 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:28 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:30 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:30 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:31 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:32 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:33 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:34 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:35 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:36 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:37 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:38 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:39 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:40 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:41 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:42 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:43 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:44 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:45 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:46 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has not started yet. Trying again in one second…
Oct 06, 2015 3:37:47 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has been started successfully.
Oct 06, 2015 3:37:47 PM com.github.genium_framework.appium.support.server.AppiumServer isServerRunning
INFO: Checking to see if a server instance is running or not …
Oct 06, 2015 3:37:47 PM com.github.genium_framework.appium.support.server.AppiumServer startServer
INFO: Server has been started successfully.
Oct 06, 2015 3:37:47 PM com.github.genium_framework.appium.support.server.AppiumServer isServerRunning
INFO: Checking to see if a server instance is running or not …
Appium Server Started!
Appium Server took - ‘136’ seconds to start
Appium Server Started!
Appium Server took - ‘136’ seconds to start
Emulator for device - testdevice is already running
[2015-10-06 15:37:48,315] [TestNG] [INFO ] - Emulator for device - testdevice is already running
[2015-10-06 15:37:48,316] [TestNG] [INFO ] - PropertyUtility :: getEnvironmentProperty, invoked…
[2015-10-06 15:37:48,317] [TestNG] [INFO ] - PropertyUtility :: getApplicationProperty, propertyKey:myfios_appname, propertyValue:Verizon FiOS
[2015-10-06 15:37:48,317] [TestNG] [INFO ] - PropertyUtility :: getEnvironmentProperty, invoked…
[2015-10-06 15:37:48,318] [TestNG] [INFO ] - PropertyUtility :: getApplicationProperty, propertyKey:myfios_user, propertyValue:vzcomtesttx
[2015-10-06 15:37:48,318] [TestNG] [INFO ] - PropertyUtility :: getEnvironmentProperty, invoked…
[2015-10-06 15:37:48,319] [TestNG] [INFO ] - PropertyUtility :: getApplicationProperty, propertyKey:myfios_pass, propertyValue:vzoff123
Device Name : testdevice; port : 4727
[2015-10-06 15:37:48,320] [TestNG] [INFO ] - PropertyUtility :: getAppInstallProperty, invoked…
[2015-10-06 15:37:48,321] [TestNG] [INFO ] - PropertyUtility :: getAppInstallProperty, propertyKey:android_server_base_uri, propertyValue:https://mstg.verizon.com/mobileapps/android/ThebeX/release-2015_09_a_PROD/Thebe.apk
[2015-10-06 15:37:48,321] [TestNG] [INFO ] - PropertyUtility :: getEnvironmentProperty, invoked…
[2015-10-06 15:37:48,322] [TestNG] [INFO ] - PropertyUtility :: getApplicationProperty, propertyKey:myfios_apppackage_android, propertyValue:com.verizon.oxygen
[2015-10-06 15:37:48,322] [TestNG] [INFO ] - PropertyUtility :: getEnvironmentProperty, invoked…
[2015-10-06 15:37:48,323] [TestNG] [INFO ] - PropertyUtility :: getApplicationProperty, propertyKey:myfios_appactivity_android, propertyValue:.MainActivity
Emulator for device - testdevice1 is already running
[2015-10-06 15:37:48,379] [TestNG] [INFO ] - Emulator for device - testdevice1 is already running
[2015-10-06 15:37:48,379] [TestNG] [INFO ] - PropertyUtility :: getEnvironmentProperty, invoked…
[2015-10-06 15:37:48,380] [TestNG] [INFO ] - PropertyUtility :: getApplicationProperty, propertyKey:myfios_appname, propertyValue:Verizon FiOS
[2015-10-06 15:37:48,380] [TestNG] [INFO ] - PropertyUtility :: getEnvironmentProperty, invoked…
[2015-10-06 15:37:48,381] [TestNG] [INFO ] - PropertyUtility :: getApplicationProperty, propertyKey:myfios_user, propertyValue:vzcomtesttx
[2015-10-06 15:37:48,381] [TestNG] [INFO ] - PropertyUtility :: getEnvironmentProperty, invoked…
[2015-10-06 15:37:48,382] [TestNG] [INFO ] - PropertyUtility :: getApplicationProperty, propertyKey:myfios_pass, propertyValue:vzoff123
Device Name : testdevice1; port : 4728
[2015-10-06 15:37:48,382] [TestNG] [INFO ] - PropertyUtility :: getAppInstallProperty, invoked…
[2015-10-06 15:37:48,382] [TestNG] [INFO ] - PropertyUtility :: getAppInstallProperty, propertyKey:android_server_base_uri, propertyValue:https://mstg.verizon.com/mobileapps/android/ThebeX/release-2015_09_a_PROD/Thebe.apk
[2015-10-06 15:37:48,383] [TestNG] [INFO ] - PropertyUtility :: getEnvironmentProperty, invoked…
[2015-10-06 15:37:48,383] [TestNG] [INFO ] - PropertyUtility :: getApplicationProperty, propertyKey:myfios_apppackage_android, propertyValue:com.verizon.oxygen
[2015-10-06 15:37:48,383] [TestNG] [INFO ] - PropertyUtility :: getEnvironmentProperty, invoked…
[2015-10-06 15:37:48,384] [TestNG] [INFO ] - PropertyUtility :: getApplicationProperty, propertyKey:myfios_appactivity_android, propertyValue:.MainActivity
15:37:49.167 [Forwarding newSession on session null to remote] DEBUG o.a.h.c.protocol.RequestAddCookies - CookieSpec selected: default
15:37:49.167 [Forwarding newSession on session null to remote] DEBUG o.a.h.c.protocol.RequestAddCookies - CookieSpec selected: default
15:37:49.179 [Forwarding newSession on session null to remote] DEBUG o.a.h.c.protocol.RequestAuthCache - Auth cache not set in the context
15:37:49.179 [Forwarding newSession on session null to remote] DEBUG o.a.h.c.protocol.RequestAuthCache - Auth cache not set in the context
15:37:49.180 [Forwarding newSession on session null to remote] DEBUG o.a.h.i.c.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://127.0.0.1:4727][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
15:37:49.180 [Forwarding newSession on session null to remote] DEBUG o.a.h.i.c.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://127.0.0.1:4728][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
15:37:49.192 [Forwarding newSession on session null to remote] DEBUG o.a.h.i.c.PoolingHttpClientConnectionManager - Connection leased: [id: 0][route: {}->http://127.0.0.1:4727][total kept alive: 0; route allocated: 1 of 2000; total allocated: 2 of 2000]
15:37:49.193 [Forwarding newSession on session null to remote] DEBUG o.a.h.i.c.PoolingHttpClientConnectionManager - Connection leased: [id: 1][route: {}->http://127.0.0.1:4728][total kept alive: 0; route allocated: 1 of 2000; total allocated: 2 of 2000]
15:37:49.194 [Forwarding newSession on session null to remote] DEBUG o.a.h.impl.execchain.MainClientExec - Opening connection {}->http://127.0.0.1:4727
15:37:49.194 [Forwarding newSession on session null to remote] DEBUG o.a.h.impl.execchain.MainClientExec - Opening connection {}->http://127.0.0.1:4728
15:37:49.195 [Forwarding newSession on session null to remote] DEBUG o.a.h.i.c.DefaultHttpClientConnectionOperator - Connecting to /127.0.0.1:4728
15:37:49.195 [Forwarding newSession on session null to remote] DEBUG o.a.h.i.c.DefaultHttpClientConnectionOperator - Connecting to /127.0.0.1:4727
15:37:49.196 [Forwarding newSession on session null to remote] DEBUG o.a.h.i.c.DefaultHttpClientConnectionOperator - Connection established 127.0.0.1:52284<->127.0.0.1:4728
15:37:49.197 [Forwarding newSession on session null to remote] DEBUG o.a.h.impl.execchain.MainClientExec - Executing request POST /wd/hub/session HTTP/1.1
15:37:49.197 [Forwarding newSession on session null to remote] DEBUG o.a.h.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED
15:37:49.197 [Forwarding newSession on session null to remote] DEBUG o.a.h.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED
15:37:49.199 [Forwarding newSession on session null to remote] DEBUG org.apache.http.headers - http-outgoing-1 >> POST /wd/hub/session HTTP/1.1
15:37:49.199 [Forwarding newSession on session null to remote] DEBUG org.apache.http.headers - http-outgoing-1 >> Content-Type: application/json; charset=utf-8
15:37:49.199 [Forwarding newSession on session null to remote] DEBUG org.apache.http.headers - http-outgoing-1 >> Content-Length: 208
15:37:49.199 [Forwarding newSession on session null to remote] DEBUG org.apache.http.headers - http-outgoing-1 >> Host: 127.0.0.1:4728
15:37:49.199 [Forwarding newSession on session null to remote] DEBUG org.apache.http.headers - http-outgoing-1 >> Connection: Keep-Alive
15:37:49.199 [Forwarding newSession on session null to remote] DEBUG org.apache.http.headers - http-outgoing-1 >> User-Agent: Apache-HttpClient/4.4.1 (Java/1.8.0_45)
15:37:49.199 [Forwarding newSession on session null to remote] DEBUG org.apache.http.headers - http-outgoing-1 >> Accept-Encoding: gzip,deflate
15:37:49.199 [Forwarding newSession on session null to remote] DEBUG org.apache.http.wire - http-outgoing-1 >> “POST /wd/hub/session HTTP/1.1[\r][\n]”
15:37:49.199 [Forwarding newSession on session null to remote] DEBUG org.apache.http.wire - http-outgoing-1 >> “Content-Type: application/json; charset=utf-8[\r][\n]”
15:37:49.200 [Forwarding newSession on session null to remote] DEBUG org.apache.http.wire - http-outgoing-1 >> “Content-Length: 208[\r][\n]”
15:37:49.200 [Forwarding newSession on session null to remote] DEBUG org.apache.http.wire - http-outgoing-1 >> “Host: 127.0.0.1:4728[\r][\n]”
15:37:49.200 [Forwarding newSession on session null to remote] DEBUG org.apache.http.wire - http-outgoing-1 >> “Connection: Keep-Alive[\r][\n]”
15:37:49.200 [Forwarding newSession on session null to remote] DEBUG org.apache.http.wire - http-outgoing-1 >> “User-Agent: Apache-HttpClient/4.4.1 (Java/1.8.0_45)[\r][\n]”
15:37:49.200 [Forwarding newSession on session null to remote] DEBUG org.apache.http.wire - http-outgoing-1 >> “Accept-Encoding: gzip,deflate[\r][\n]”
15:37:49.200 [Forwarding newSession on session null to remote] DEBUG org.apache.http.wire - http-outgoing-1 >> “[\r][\n]”
15:37:49.200 [Forwarding newSession on session null to remote] DEBUG org.apache.http.wire - http-outgoing-1 >> “{“desiredCapabilities”:{“appPackage”:“com.android.calculator2”,“appActivity”:“com.android.calculator2.Calculator”,“newCommandTimeout”:120,“browserName”:”",“platformName”:“Android”,“deviceName”:“testdevice1”}}"
15:37:50.200 [Forwarding newSession on session null to remote] DEBUG o.a.h.i.c.DefaultManagedHttpClientConnection - http-outgoing-0: Shutdown connection
15:37:50.201 [Forwarding newSession on session null to remote] DEBUG o.a.h.impl.execchain.MainClientExec - Connection discarded
15:37:50.201 [Forwarding newSession on session null to remote] DEBUG o.a.h.i.c.DefaultManagedHttpClientConnection - http-outgoing-0: Close connection
15:37:50.202 [Forwarding newSession on session null to remote] DEBUG o.a.h.i.c.PoolingHttpClientConnectionManager - Connection released: [id: 0][route: {}->http://127.0.0.1:4727][total kept alive: 0; route allocated: 0 of 2000; total allocated: 1 of 2000]
Device Name : testdevice; port : 4727
Error : Could not start a new session. Possible causes are invalid address of the remote server or browser start-up failure.
Build info: version: ‘2.47.1’, revision: ‘unknown’, time: ‘2015-07-30 11:02:44’
System info: host: ‘TUSTX002LKVT30S’, ip: ‘143.91.240.206’, os.name: ‘Windows 7’, os.arch: ‘amd64’, os.version: ‘6.1’, java.version: ‘1.8.0_45’
Driver info: driver.version: AndroidDriver
[2015-10-06 15:37:50,290] [TestNG] [INFO ] - Error in creating a Appium Driver
Oct 06, 2015 3:37:50 PM com.github.genium_framework.appium.support.server.AppiumServer stopServer
INFO: Stopping the server with the command: cmd /c echo off & FOR /F “usebackq tokens=5” %a in (netstat -nao ^| findstr /R /C:"4728 ") do (FOR /F “usebackq” %b in (TASKLIST /FI "PID eq %a" ^| findstr /I node.exe) do taskkill /F /PID %a)
Oct 06, 2015 3:37:52 PM com.github.genium_framework.appium.support.server.AppiumServer stopServer
INFO: Stopping the server with the command: cmd /c echo off & FOR /F “usebackq tokens=5” %a in (netstat -nao ^| findstr /R /C:"4728 ") do (FOR /F “usebackq” %b in (TASKLIST /FI "PID eq %a" ^| findstr /I node.exe) do taskkill /F /PID %a)
15:37:52.267 [Forwarding newSession on session null to remote] DEBUG org.apache.http.wire - http-outgoing-1 << “[read] I/O error: Connection reset”
15:37:52.268 [Forwarding newSession on session null to remote] DEBUG o.a.h.i.c.DefaultManagedHttpClientConnection - http-outgoing-1: Close connection
15:37:52.268 [Forwarding newSession on session null to remote] DEBUG o.a.h.i.c.DefaultManagedHttpClientConnection - http-outgoing-1: Shutdown connection
15:37:52.268 [Forwarding newSession on session null to remote] DEBUG o.a.h.impl.execchain.MainClientExec - Connection discarded
15:37:52.268 [Forwarding newSession on session null to remote] DEBUG o.a.h.i.c.DefaultManagedHttpClientConnection - http-outgoing-1: Close connection
15:37:52.268 [Forwarding newSession on session null to remote] DEBUG o.a.h.i.c.PoolingHttpClientConnectionManager - Connection released: [id: 1][route: {}->http://127.0.0.1:4728][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
Device Name : testdevice1; port : 4728
Error : Could not start a new session. Possible causes are invalid address of the remote server or browser start-up failure.
Build info: version: ‘2.47.1’, revision: ‘unknown’, time: ‘2015-07-30 11:02:44’
System info: host: ‘TUSTX002LKVT30S’, ip: ‘143.91.240.206’, os.name: ‘Windows 7’, os.arch: ‘amd64’, os.version: ‘6.1’, java.version: ‘1.8.0_45’
Driver info: driver.version: AndroidDriver
[2015-10-06 15:37:52,271] [TestNG] [INFO ] - Error in creating a Appium Driver
Oct 06, 2015 3:37:54 PM com.github.genium_framework.appium.support.server.AppiumServer stopServer
INFO: Server stopping output:
testing continues
testing continues
Oct 06, 2015 3:37:55 PM com.github.genium_framework.appium.support.server.AppiumServer stopServer
INFO: Server stopping output: SUCCESS: The process with PID 5072 has been terminated.

===============================================
ParallelExecution
Total tests run: 4, Failures: 0, Skips: 4
Configuration Failures: 2, Skips: 9

[2015-10-06 15:37:55,875] [main] [INFO ] -
[2015-10-06 15:37:55,875] [main] [INFO ] - PMTestNGSuite :: main() completed
[2015-10-06 15:37:55,875] [main] [INFO ] - *** start_timestamp: 10-06-2015 03:35:18 ***
[2015-10-06 15:37:55,875] [main] [INFO ] - *** end_timestamp: 10-06-2015 03:37:55 ***
[2015-10-06 15:37:55,875] [main] [INFO ] - Total time for execution : 156 seconds
[2015-10-06 15:37:55,875] [main] [INFO ] -