Skip to content

Instantly share code, notes, and snippets.

@gwpantazes
Last active November 18, 2016 18:55
Show Gist options
  • Save gwpantazes/76377de37913492066df5e2ec7454aac to your computer and use it in GitHub Desktop.
Save gwpantazes/76377de37913492066df5e2ec7454aac to your computer and use it in GitHub Desktop.
Hour long timeout during test suite Appium Bug
public class CommonStepDefs {
Scenario scenario; // gets loaded with current scenario in @Before
@Before
public void before(Scenario scenario)
{
CommonStepDefs.scenario = scenario;
//... setup and other stuff()
}
/**
* A stripped down version of the after step for the error location.
* After step logs problems, tears down and sets up a fresh driver if the scenario failed.
*/
@After
public void after()
{
if (scenario.isFailed())
{
try
{
driver.getPageSource(); // ERROR LOCATION: This is where the test suite locks up for an hour
}
catch (Exception e) // Notice how the exception catching doesn't catch the problem
{
logger.error("Error trying to get pageSource", e);
}
try
{
byte[] srcFile = _driver.getScreenshotAs(OutputType.BYTES); // ERROR LOCATION: Taking a screenshot also causes the same problem of the test suite locking up for an hour
scenario.embed(srcFile, "image/png");
}
catch(Exception e)
{
logger.error("Taking a screenshot exception", e);
}
// ... do other things here
// We've failed, so restart the driver
logger.info("Attempting to kill the driver...");
try
{
driver.quit();
}
catch(NoSuchSessionException | UnreachableBrowserException e)
{
logger.error("\nDriver or Appium Server connection error encountered. Unable to quit.", e);
}
logger.info("Attempting to get a new driver...");
getNewDriver();
}
}
}
This file has been truncated, but you can view the full file.
2016-11-07 15:31:01,194 INFO [jfptest-nexus9 Appium Instance] [Appium] Welcome to Appium v1.5.2 (REV c016aedaab3a5b10207eb05d6b53199e6fcdb761)
2016-11-07 15:31:01,196 INFO [jfptest-nexus9 Appium Instance] [Appium] Non-default server args:
2016-11-07 15:31:01,197 INFO [jfptest-nexus9 Appium Instance] [Appium] port: 4727
2016-11-07 15:31:01,197 INFO [jfptest-nexus9 Appium Instance] [Appium] sessionOverride: true
2016-11-07 15:31:01,197 INFO [jfptest-nexus9 Appium Instance] [Appium] defaultCommandTimeout: 14400
2016-11-07 15:31:01,197 INFO [jfptest-nexus9 Appium Instance] [Appium] fullReset: true
2016-11-07 15:31:01,198 INFO [jfptest-nexus9 Appium Instance] [Appium] Deprecated server args:
2016-11-07 15:31:01,198 INFO [jfptest-nexus9 Appium Instance] [Appium] --full-reset => --default-capabilities '{"fullReset":true}'
2016-11-07 15:31:01,199 INFO [jfptest-nexus9 Appium Instance] [Appium] Default capabilities, which will be added to each request unless overridden by desired capabilities:
2016-11-07 15:31:01,200 INFO [jfptest-nexus9 Appium Instance] [Appium] fullReset: true
2016-11-07 15:31:01,569 INFO [jfptest-nexus9 Appium Instance] [Appium] Appium REST http interface listener started on 0.0.0.0:4727
2016-11-07 15:32:19,389 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session {"desiredCapabilities":{"app":"/opt/jenkins/tmp/myproject-development.apk","noReset":true,"newCommandTimeout":"720","appiumVersion":"1.5.3","takesScreenshot":true,"udid":"HT4CCJT02164","platformName":"Android","deviceName":"flounder","fullReset":false}}
2016-11-07 15:32:19,391 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.createSession() with args: [{"app":"/opt/jenkins/tmp/myproject-development.apk","noReset":true,"newCommandTimeout":"720","appiumVersion":"1.5.3","takesScreenshot":true,"udid...
2016-11-07 15:32:19,394 INFO [jfptest-nexus9 Appium Instance] [Appium] Creating new AndroidDriver session
2016-11-07 15:32:19,395 INFO [jfptest-nexus9 Appium Instance] [Appium] Capabilities:
2016-11-07 15:32:19,395 INFO [jfptest-nexus9 Appium Instance] [Appium] app: '/opt/jenkins/tmp/myproject-development.apk'
2016-11-07 15:32:19,395 INFO [jfptest-nexus9 Appium Instance] [Appium] noReset: true
2016-11-07 15:32:19,395 INFO [jfptest-nexus9 Appium Instance] [Appium] newCommandTimeout: '720'
2016-11-07 15:32:19,395 INFO [jfptest-nexus9 Appium Instance] [Appium] appiumVersion: '1.5.3'
2016-11-07 15:32:19,395 INFO [jfptest-nexus9 Appium Instance] [Appium] takesScreenshot: true
2016-11-07 15:32:19,395 INFO [jfptest-nexus9 Appium Instance] [Appium] udid: 'HT4CCJT02164'
2016-11-07 15:32:19,396 INFO [jfptest-nexus9 Appium Instance] [Appium] platformName: 'Android'
2016-11-07 15:32:19,396 INFO [jfptest-nexus9 Appium Instance] [Appium] deviceName: 'flounder'
2016-11-07 15:32:19,396 INFO [jfptest-nexus9 Appium Instance] [Appium] fullReset: false
2016-11-07 15:32:19,400 INFO [jfptest-nexus9 Appium Instance] [BaseDriver] Capability 'newCommandTimeout' changed from string ('720') to integer (720). This may cause unexpected behavior
2016-11-07 15:32:19,402 INFO [jfptest-nexus9 Appium Instance] [BaseDriver] The following capabilities were provided, but are not recognized by appium: appiumVersion, takesScreenshot.
2016-11-07 15:32:19,404 INFO [jfptest-nexus9 Appium Instance] [BaseDriver] Session created with session id: c3b06d45-1569-4725-8281-b15a691ff446
2016-11-07 15:32:19,405 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidDriver] Getting Java version
2016-11-07 15:32:19,508 INFO [jfptest-nexus9 Appium Instance] [AndroidDriver] Java version is: 1.8.0_45
2016-11-07 15:32:19,511 INFO [jfptest-nexus9 Appium Instance] [ADB] Checking whether adb is present
2016-11-07 15:32:19,518 INFO [jfptest-nexus9 Appium Instance] [ADB] Using adb from /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb
2016-11-07 15:32:19,518 INFO [jfptest-nexus9 Appium Instance] [AndroidDriver] Retrieving device list
2016-11-07 15:32:19,518 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Trying to find a connected android device
2016-11-07 15:32:19,519 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:32:19,565 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:32:19,566 INFO [jfptest-nexus9 Appium Instance] [AndroidDriver] Using device: HT4CCJT02164
2016-11-07 15:32:19,567 INFO [jfptest-nexus9 Appium Instance] [ADB] Checking whether adb is present
2016-11-07 15:32:19,569 INFO [jfptest-nexus9 Appium Instance] [ADB] Using adb from /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb
2016-11-07 15:32:19,569 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Setting device id to HT4CCJT02164
2016-11-07 15:32:19,570 INFO [jfptest-nexus9 Appium Instance] [BaseDriver] Using local app '/opt/jenkins/tmp/myproject-development.apk'
2016-11-07 15:32:19,570 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidDriver] Checking whether app is actually present
2016-11-07 15:32:19,571 INFO [jfptest-nexus9 Appium Instance] [AndroidDriver] Starting Android session
2016-11-07 15:32:19,574 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","wait-for-device"]
2016-11-07 15:32:19,595 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:32:19,615 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:32:19,616 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","echo","ping"]
2016-11-07 15:32:19,661 INFO [jfptest-nexus9 Appium Instance] [debug] [Logcat] Starting logcat capture
2016-11-07 15:32:19,709 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidDriver] Pushing settings apk to device...
2016-11-07 15:32:19,710 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","install","/usr/local/lib/node_modules/appium/node_modules/appium-android-driver/node_modules/io.appium.settings/bin/settings_apk-debug.apk"]
2016-11-07 15:32:22,457 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidDriver] Pushing unlock helper app to device...
2016-11-07 15:32:22,457 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","install","/usr/local/lib/node_modules/appium/node_modules/appium-android-driver/node_modules/appium-unlock/bin/unlock_apk-debug.apk"]
2016-11-07 15:32:23,874 INFO [jfptest-nexus9 Appium Instance] [ADB] Getting device platform version
2016-11-07 15:32:23,874 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:32:23,894 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:32:23,894 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","getprop","ro.build.version.release"]
2016-11-07 15:32:23,939 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:32:23,959 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:32:23,960 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","dumpsys","window"]
2016-11-07 15:32:24,033 INFO [jfptest-nexus9 Appium Instance] [AndroidDriver] Unlocking screen
2016-11-07 15:32:24,033 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidDriver] Screen is locked, trying to unlock
2016-11-07 15:32:24,034 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:32:24,054 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:32:24,054 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","getprop","ro.build.version.sdk"]
2016-11-07 15:32:24,098 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Device API level: 22
2016-11-07 15:32:24,098 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:32:24,118 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:32:24,119 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","am","start","-n","io.appium.unlock/.Unlock","-S","-a","android.intent.action.MAIN","-c","android.intent.category.LAUNCHER","-f","0x10200000"]
2016-11-07 15:32:26,841 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:32:26,861 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:32:26,862 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","dumpsys","window"]
2016-11-07 15:32:26,932 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidDriver] Screen unlocked successfully
2016-11-07 15:32:26,933 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidDriver] Parsing package and activity from app manifest
2016-11-07 15:32:26,933 INFO [jfptest-nexus9 Appium Instance] [ADB] Checking whether aapt is present
2016-11-07 15:32:26,936 INFO [jfptest-nexus9 Appium Instance] [ADB] Using aapt from /Users/automobile/Documents/android-sdk-macosx/build-tools/23.0.0-preview/aapt
2016-11-07 15:32:26,936 INFO [jfptest-nexus9 Appium Instance] [ADB] Extracting package and launch activity from manifest
2016-11-07 15:32:26,992 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] badging package: com.mycompany.myproject_goo
2016-11-07 15:32:26,992 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] badging act: com.mycompany.myproject_goo.views.activities.SplashActivity
2016-11-07 15:32:26,992 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidDriver] Parsed package and activity are: com.mycompany.myproject_goo/com.mycompany.myproject_goo.views.activities.SplashActivity
2016-11-07 15:32:27,078 INFO [jfptest-nexus9 Appium Instance] [AndroidDriver] Remote apk path is /data/local/tmp/f40dbc5a5437b509910cc17f5799244f.apk
2016-11-07 15:32:27,079 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:32:27,098 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:32:27,099 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","ls","/data/local/tmp/f40dbc5a5437b509910cc17f5799244f.apk"]
2016-11-07 15:32:27,132 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidDriver] Checking if app is installed
2016-11-07 15:32:27,133 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting install status for com.mycompany.myproject_goo
2016-11-07 15:32:27,133 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Device API level: 22
2016-11-07 15:32:27,133 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:32:27,153 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:32:27,153 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","pm","list","packages","-3","com.mycompany.myproject_goo"]
2016-11-07 15:32:27,798 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] App is installed
2016-11-07 15:32:27,799 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidDriver] Extracting strings from apk /opt/jenkins/tmp/myproject-development.apk null /var/folders/02/3_sg564j35lfmzhhg_xjlmxc0000gp/T/com.mycompany.myproject_goo
2016-11-07 15:32:27,799 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Extracting strings for language: default
2016-11-07 15:32:27,800 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Device API level: 22
2016-11-07 15:32:27,801 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:32:27,821 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:32:27,822 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","getprop","persist.sys.language"]
2016-11-07 15:32:27,859 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Current device property 'persist.sys.language':
2016-11-07 15:32:27,859 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:32:27,879 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:32:27,879 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","getprop","ro.product.locale.language"]
2016-11-07 15:32:27,917 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Current device property 'ro.product.locale.language': en
2016-11-07 15:32:28,874 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] No strings.xml for language 'en', getting default strings.xml
2016-11-07 15:32:29,760 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Reading strings from converted strings.json
2016-11-07 15:32:29,762 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","push","/var/folders/02/3_sg564j35lfmzhhg_xjlmxc0000gp/T/com.mycompany.myproject_goo/strings.json","/data/local/tmp"]
2016-11-07 15:32:29,797 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Watching for bootstrap disconnect
2016-11-07 15:32:29,798 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Forwarding system: 4724 to device: 4724
2016-11-07 15:32:29,798 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","forward","tcp:4724","tcp:4724"]
2016-11-07 15:32:29,801 INFO [jfptest-nexus9 Appium Instance] [debug] [UiAutomator] Starting UiAutomator
2016-11-07 15:32:29,801 INFO [jfptest-nexus9 Appium Instance] [debug] [UiAutomator] Moving to state 'starting'
2016-11-07 15:32:29,801 INFO [jfptest-nexus9 Appium Instance] [debug] [UiAutomator] Parsing uiautomator jar
2016-11-07 15:32:29,801 INFO [jfptest-nexus9 Appium Instance] [debug] [UiAutomator] Found jar name: 'AppiumBootstrap.jar'
2016-11-07 15:32:29,802 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","push","/usr/local/lib/node_modules/appium/node_modules/appium-android-driver/node_modules/appium-android-bootstrap/bootstrap/bin/AppiumBootstrap.jar","/data/local/tmp/"]
2016-11-07 15:32:29,839 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Attempting to kill all uiautomator processes
2016-11-07 15:32:29,840 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting all processes with uiautomator
2016-11-07 15:32:29,840 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:32:29,859 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:32:29,859 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","ps","uiautomator"]
2016-11-07 15:32:29,913 INFO [jfptest-nexus9 Appium Instance] [ADB] No uiautomator process found to kill, continuing...
2016-11-07 15:32:29,913 INFO [jfptest-nexus9 Appium Instance] [debug] [UiAutomator] Starting UIAutomator
2016-11-07 15:32:29,913 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Creating ADB subprocess with args: -P, 5037, -s, HT4CCJT02164, shell, uiautomator, runtest, AppiumBootstrap.jar, -c, io.appium.android.bootstrap.Bootstrap, -e, pkg, com.mycompany.myproject_goo, -e, disableAndroidWatchers, false, -e, acceptSslCerts, false
2016-11-07 15:32:30,952 INFO [jfptest-nexus9 Appium Instance] [debug] [UiAutomator] Moving to state 'online'
2016-11-07 15:32:30,953 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Loading json...
2016-11-07 15:32:30,955 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] Android bootstrap socket is now connected
2016-11-07 15:32:30,956 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Device API level: 22
2016-11-07 15:32:30,956 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:32:30,959 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] json loading complete.
2016-11-07 15:32:30,963 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Registered crash watchers.
2016-11-07 15:32:30,964 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Client connected
2016-11-07 15:32:30,977 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:32:30,977 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","am","start","-n","com.mycompany.myproject_goo/com.mycompany.myproject_goo.views.activities.SplashActivity","-S","-a","android.intent.action.MAIN","-c","android.intent.category.LAUNCHER","-f","0x10200000"]
2016-11-07 15:32:32,306 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Waiting for pkg: 'com.mycompany.myproject_goo' and activity: 'com.mycompany.myproject_goo.views.activities.SplashActivity' to be focused
2016-11-07 15:32:32,306 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Possible activities, to be checked: com.mycompany.myproject_goo.views.activities.SplashActivity, .views.activities.SplashActivity, .com.mycompany.myproject_goo.views.activities.SplashActivity
2016-11-07 15:32:32,309 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting focused package and activity
2016-11-07 15:32:32,310 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:32:32,331 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:32:32,331 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","dumpsys","window","windows"]
2016-11-07 15:32:32,403 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Found package: 'com.mycompany.myproject_goo' and activity: '.views.activities.SplashActivity'
2016-11-07 15:32:32,404 INFO [jfptest-nexus9 Appium Instance] [Appium] New AndroidDriver session created successfully, session c3b06d45-1569-4725-8281-b15a691ff446 added to master session list
2016-11-07 15:32:32,405 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Responding to client with driver.createSession() result: {"platform":"LINUX","webStorageEnabled":false,"takesScreenshot":true,"javascriptEnabled":true,"databaseEnabled":false,"networkConnectionEnabled":tr...
2016-11-07 15:32:32,411 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session 200 13017 ms - 740
2016-11-07 15:32:33,651 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/appium/device/remove_app {"bundleId":"com.mycompany.myproject_goo"}
2016-11-07 15:32:33,654 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.removeApp() with args: ["com.mycompany.myproject_goo","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:32:33,655 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Uninstalling com.mycompany.myproject_goo
2016-11-07 15:32:33,655 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:32:33,676 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:32:33,676 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","am","force-stop","com.mycompany.myproject_goo"]
2016-11-07 15:32:34,567 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","uninstall","com.mycompany.myproject_goo"]
2016-11-07 15:32:36,584 INFO [jfptest-nexus9 Appium Instance] [ADB] App was uninstalled
2016-11-07 15:32:36,585 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Responding to client with driver.removeApp() result: true
2016-11-07 15:32:36,587 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/appium/device/remove_app 200 2935 ms - 76
2016-11-07 15:32:36,591 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/appium/device/install_app {"appPath":"/opt/jenkins/tmp/myproject-development.apk"}
2016-11-07 15:32:36,592 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.installApp() with args: ["/opt/jenkins/tmp/myproject-development.apk","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:32:36,593 INFO [jfptest-nexus9 Appium Instance] [ADB] Checking whether aapt is present
2016-11-07 15:32:36,595 INFO [jfptest-nexus9 Appium Instance] [ADB] Using aapt from /Users/automobile/Documents/android-sdk-macosx/build-tools/23.0.0-preview/aapt
2016-11-07 15:32:36,595 INFO [jfptest-nexus9 Appium Instance] [ADB] Extracting package and launch activity from manifest
2016-11-07 15:32:36,604 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] badging package: com.mycompany.myproject_goo
2016-11-07 15:32:36,604 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] badging act: com.mycompany.myproject_goo.views.activities.SplashActivity
2016-11-07 15:32:36,686 INFO [jfptest-nexus9 Appium Instance] [AndroidDriver] Remote apk path is /data/local/tmp/f40dbc5a5437b509910cc17f5799244f.apk
2016-11-07 15:32:36,686 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:32:36,707 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:32:36,708 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","ls","/data/local/tmp/f40dbc5a5437b509910cc17f5799244f.apk"]
2016-11-07 15:32:36,778 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidDriver] Checking if app is installed
2016-11-07 15:32:36,778 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting install status for com.mycompany.myproject_goo
2016-11-07 15:32:36,779 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Device API level: 22
2016-11-07 15:32:36,780 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:32:36,801 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:32:36,801 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","pm","list","packages","-3","com.mycompany.myproject_goo"]
2016-11-07 15:32:37,511 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] App is not installed
2016-11-07 15:32:37,512 INFO [jfptest-nexus9 Appium Instance] [AndroidDriver] Apk is not yet installed
2016-11-07 15:32:37,512 INFO [jfptest-nexus9 Appium Instance] [AndroidDriver] installing apk from remote
2016-11-07 15:32:37,512 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:32:37,533 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:32:37,534 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","mkdir","-p","/data/local/tmp"]
2016-11-07 15:32:37,582 INFO [jfptest-nexus9 Appium Instance] [AndroidDriver] Clearing out any existing remote apks with the same hash
2016-11-07 15:32:37,583 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidDriver] Removing any old apks
2016-11-07 15:32:37,583 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidDriver] Except ["f40dbc5a5437b509910cc17f5799244f"]
2016-11-07 15:32:37,583 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:32:37,604 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:32:37,605 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","ls","/data/local/tmp/*.apk"]
2016-11-07 15:32:37,652 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Uninstalling com.mycompany.myproject_goo
2016-11-07 15:32:37,652 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:32:37,672 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:32:37,673 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","am","force-stop","com.mycompany.myproject_goo"]
2016-11-07 15:32:38,695 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","uninstall","com.mycompany.myproject_goo"]
2016-11-07 15:32:39,835 INFO [jfptest-nexus9 Appium Instance] [ADB] App was not uninstalled, maybe it wasn't on device?
2016-11-07 15:32:39,836 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:32:39,857 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:32:39,857 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","pm","install","-r","/data/local/tmp/f40dbc5a5437b509910cc17f5799244f.apk"]
2016-11-07 15:33:08,020 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Responding to client with driver.installApp() result: null
2016-11-07 15:33:08,021 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/appium/device/install_app 200 31428 ms - 76
2016-11-07 15:33:08,026 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/appium/app/launch {}
2016-11-07 15:33:08,027 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.launchApp() with args: ["c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:08,116 INFO [jfptest-nexus9 Appium Instance] [AndroidDriver] Remote apk path is /data/local/tmp/f40dbc5a5437b509910cc17f5799244f.apk
2016-11-07 15:33:08,117 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:33:08,141 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:33:08,142 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","ls","/data/local/tmp/f40dbc5a5437b509910cc17f5799244f.apk"]
2016-11-07 15:33:08,195 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidDriver] Checking if app is installed
2016-11-07 15:33:08,195 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting install status for com.mycompany.myproject_goo
2016-11-07 15:33:08,195 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Device API level: 22
2016-11-07 15:33:08,197 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:33:08,220 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:33:08,220 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","pm","list","packages","-3","com.mycompany.myproject_goo"]
2016-11-07 15:33:08,982 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] App is installed
2016-11-07 15:33:08,982 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidDriver] Extracting strings from apk /opt/jenkins/tmp/myproject-development.apk null /var/folders/02/3_sg564j35lfmzhhg_xjlmxc0000gp/T/com.mycompany.myproject_goo
2016-11-07 15:33:08,982 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Extracting strings for language: default
2016-11-07 15:33:08,984 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Device API level: 22
2016-11-07 15:33:08,985 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:33:09,009 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:33:09,009 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","getprop","persist.sys.language"]
2016-11-07 15:33:09,040 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Current device property 'persist.sys.language':
2016-11-07 15:33:09,043 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:33:09,063 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:33:09,065 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","getprop","ro.product.locale.language"]
2016-11-07 15:33:09,112 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Current device property 'ro.product.locale.language': en
2016-11-07 15:33:09,900 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] No strings.xml for language 'en', getting default strings.xml
2016-11-07 15:33:10,707 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Reading strings from converted strings.json
2016-11-07 15:33:10,741 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","push","/var/folders/02/3_sg564j35lfmzhhg_xjlmxc0000gp/T/com.mycompany.myproject_goo/strings.json","/data/local/tmp"]
2016-11-07 15:33:10,778 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Device API level: 22
2016-11-07 15:33:10,778 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:33:10,799 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:33:10,801 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","am","start","-n","com.mycompany.myproject_goo/com.mycompany.myproject_goo.views.activities.SplashActivity","-S","-a","android.intent.action.MAIN","-c","android.intent.category.LAUNCHER","-f","0x10200000"]
2016-11-07 15:33:12,002 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Waiting for pkg: 'com.mycompany.myproject_goo' and activity: 'com.mycompany.myproject_goo.views.activities.SplashActivity' to be focused
2016-11-07 15:33:12,003 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Possible activities, to be checked: com.mycompany.myproject_goo.views.activities.SplashActivity, .views.activities.SplashActivity, .com.mycompany.myproject_goo.views.activities.SplashActivity
2016-11-07 15:33:12,003 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting focused package and activity
2016-11-07 15:33:12,003 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:33:12,024 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:33:12,024 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","dumpsys","window","windows"]
2016-11-07 15:33:12,087 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Found package: 'com.mycompany.myproject_goo' and activity: '.views.activities.SplashActivity'
2016-11-07 15:33:12,088 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Responding to client with driver.launchApp() result: null
2016-11-07 15:33:12,089 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/appium/app/launch 200 4063 ms - 76
2016-11-07 15:33:12,955 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/progress_overlay"}
2016-11-07 15:33:12,956 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/progress_overlay","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:12,958 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:12,961 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/progress_overlay","context":"","multiple":false}}
2016-11-07 15:33:12,964 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/progress_overlay","context":"","multiple":false}}
2016-11-07 15:33:12,965 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:12,965 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:12,965 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/progress_overlay' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:12,965 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/progress_overlay]
2016-11-07 15:33:13,968 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:13,968 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/progress_overlay' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:13,968 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/progress_overlay]
2016-11-07 15:33:15,117 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:15,119 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:15,123 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 2167 ms - 164
2016-11-07 15:33:16,656 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/progress_overlay"}
2016-11-07 15:33:16,657 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/progress_overlay","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:16,657 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:16,658 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/progress_overlay","context":"","multiple":false}}
2016-11-07 15:33:16,664 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/progress_overlay","context":"","multiple":false}}
2016-11-07 15:33:16,664 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:16,665 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:16,665 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/progress_overlay' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:16,665 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/progress_overlay]
2016-11-07 15:33:16,689 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:16,689 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/progress_overlay' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:16,689 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/progress_overlay]
2016-11-07 15:33:16,712 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:16,713 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:16,715 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 58 ms - 164
2016-11-07 15:33:16,721 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"xpath","value":"//android.widget.TextView[@text=\"No Internet Connection\"]"}
2016-11-07 15:33:16,721 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["xpath","//android.widget.TextView[@text=\"No Internet Connection\"]","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:16,722 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:16,722 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"xpath","selector":"//android.widget.TextView[@text=\"No Internet Connection\"]","context":"","multiple":false}}
2016-11-07 15:33:16,725 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"xpath","selector":"//android.widget.TextView[@text=\"No Internet Connection\"]","context":"","multiple":false}}
2016-11-07 15:33:16,725 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:16,726 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:16,726 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding '//android.widget.TextView[@text="No Internet Connection"]' using 'XPATH' with the contextId: '' multiple: false
2016-11-07 15:33:17,022 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"Could not find an element using supplied strategy. "}
2016-11-07 15:33:17,023 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:17,026 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 304 ms - 164
2016-11-07 15:33:17,531 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:17,531 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:17,532 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:17,532 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:17,541 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:17,541 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:17,541 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:17,541 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:17,541 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:17,563 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:17,567 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:17,572 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:17,609 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:17,610 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:17,611 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 80 ms - 164
2016-11-07 15:33:17,616 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:17,616 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:17,617 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:17,618 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:17,621 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:17,621 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:17,622 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:17,622 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:17,625 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:17,647 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:17,650 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:17,652 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:17,682 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:17,682 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:17,684 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 68 ms - 164
2016-11-07 15:33:18,189 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:18,190 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:18,190 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:18,190 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:18,198 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:18,198 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:18,198 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:18,199 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:18,199 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:18,203 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:18,209 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:18,214 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:18,243 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:18,243 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:18,244 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 55 ms - 164
2016-11-07 15:33:18,249 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:18,249 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:18,249 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:18,250 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:18,254 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:18,255 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:18,256 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:18,258 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:18,259 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:18,283 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:18,285 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:18,285 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:18,304 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:18,306 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:18,307 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 58 ms - 164
2016-11-07 15:33:18,812 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:18,812 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:18,812 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:18,813 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:18,818 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:18,818 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:18,818 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:18,819 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:18,819 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:18,836 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:18,838 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:18,841 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:18,860 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:18,863 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:18,865 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 53 ms - 164
2016-11-07 15:33:18,870 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:18,870 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:18,870 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:18,871 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:18,875 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:18,876 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:18,878 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:18,880 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:18,883 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:18,897 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:18,899 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:18,900 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:18,913 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:18,914 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:18,915 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 46 ms - 164
2016-11-07 15:33:19,420 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:19,420 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:19,421 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:19,421 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:19,426 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:19,427 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:19,427 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:19,427 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:19,427 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:19,442 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:19,442 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:19,445 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:19,485 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:19,488 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:19,490 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 70 ms - 164
2016-11-07 15:33:19,494 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:19,495 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:19,495 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:19,496 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:19,500 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:19,502 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:19,503 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:19,505 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:19,507 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:19,525 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:19,525 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:19,526 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:19,538 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:19,538 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:19,539 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 45 ms - 164
2016-11-07 15:33:20,044 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:20,044 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:20,045 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:20,046 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:20,053 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:20,053 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:20,053 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:20,054 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:20,054 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:20,080 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:20,082 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:20,083 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:20,123 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:20,123 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:20,125 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 81 ms - 164
2016-11-07 15:33:20,130 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:20,130 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:20,130 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:20,131 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:20,135 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:20,136 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:20,136 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:20,136 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:20,136 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:20,150 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:20,150 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:20,150 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:20,157 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:20,158 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:20,159 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 29 ms - 164
2016-11-07 15:33:20,664 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:20,664 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:20,665 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:20,665 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:20,672 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:20,672 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:20,672 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:20,673 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:20,673 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:20,679 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:20,683 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:20,692 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:20,720 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:20,722 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:20,723 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 59 ms - 164
2016-11-07 15:33:20,727 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:20,728 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:20,728 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:20,728 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:20,732 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:20,734 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:20,735 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:20,737 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:20,740 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:20,765 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:20,767 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:20,768 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:20,799 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:20,800 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:20,801 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 73 ms - 164
2016-11-07 15:33:21,305 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:21,305 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:21,306 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:21,307 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:21,313 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:21,313 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:21,314 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:21,314 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:21,314 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:21,331 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:21,333 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:21,334 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:21,354 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:21,355 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:21,357 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 51 ms - 164
2016-11-07 15:33:21,362 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:21,362 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:21,363 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:21,363 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:21,367 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:21,368 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:21,368 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:21,369 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:21,369 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:21,381 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:21,382 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:21,382 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:21,392 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:21,393 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:21,394 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 32 ms - 164
2016-11-07 15:33:21,899 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:21,899 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:21,900 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:21,900 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:21,904 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:21,904 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:21,904 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:21,904 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:21,904 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:21,915 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:21,916 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:21,916 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:21,926 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:21,927 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:21,928 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 29 ms - 164
2016-11-07 15:33:21,932 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:21,932 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:21,933 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:21,933 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:21,937 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:21,937 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:21,937 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:21,937 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:21,938 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:21,948 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:21,948 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:21,950 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:21,961 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:21,962 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:21,963 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 30 ms - 164
2016-11-07 15:33:22,468 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:22,468 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:22,469 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:22,469 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:22,475 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:22,475 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:22,475 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:22,476 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:22,476 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:22,483 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:22,484 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:22,484 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:22,507 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:22,507 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:22,509 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 41 ms - 164
2016-11-07 15:33:22,514 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:22,514 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:22,514 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:22,515 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:22,519 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:22,521 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:22,522 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:22,522 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:22,523 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:22,544 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:22,545 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:22,547 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:22,567 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:22,570 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:22,572 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 58 ms - 164
2016-11-07 15:33:23,076 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:23,077 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:23,077 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:23,077 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:23,085 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:23,085 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:23,086 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:23,086 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:23,086 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:23,111 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:23,112 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:23,112 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:23,132 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:23,134 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:23,136 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 59 ms - 164
2016-11-07 15:33:23,140 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:23,141 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:23,141 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:23,141 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:23,145 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:23,147 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:23,149 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:23,151 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:23,154 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:23,181 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:23,184 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:23,186 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:23,207 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:23,209 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:23,211 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 70 ms - 164
2016-11-07 15:33:23,715 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:23,715 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:23,716 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:23,716 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:23,722 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:23,722 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:23,722 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:23,723 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:23,723 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:23,738 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:23,740 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:23,741 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:23,760 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:23,761 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:23,762 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 47 ms - 164
2016-11-07 15:33:23,766 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:23,767 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:23,768 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:23,768 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:23,774 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:23,779 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:23,781 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:23,785 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:23,788 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:23,798 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:23,800 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:23,802 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:23,809 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:23,814 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:23,816 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 49 ms - 164
2016-11-07 15:33:24,320 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:24,320 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:24,321 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:24,321 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:24,329 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:24,329 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:24,329 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:24,331 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:24,331 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:24,349 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:24,350 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:24,353 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:24,379 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:24,379 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:24,380 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 60 ms - 164
2016-11-07 15:33:24,384 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:24,384 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:24,385 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:24,386 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:24,390 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:24,391 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:24,392 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:24,393 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:24,393 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:24,415 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:24,415 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:24,416 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:24,433 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:24,435 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:24,436 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 52 ms - 164
2016-11-07 15:33:24,941 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:24,941 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:24,942 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:24,942 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:24,948 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:24,949 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:24,949 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:24,949 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:24,949 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:24,972 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:24,976 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:24,981 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:24,987 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:24,988 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:24,990 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 48 ms - 164
2016-11-07 15:33:24,994 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:24,994 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:24,995 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:24,995 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:24,997 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:24,999 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:24,999 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:25,001 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:25,002 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:25,014 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:25,016 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:25,016 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:25,027 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:25,028 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:25,035 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 40 ms - 164
2016-11-07 15:33:25,540 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:25,540 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:25,541 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:25,541 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:25,543 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:25,544 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:25,545 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:25,582 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:25,583 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:25,583 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:25,583 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:25,583 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:25,583 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:25,583 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:25,583 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 18 ms - 164
2016-11-07 15:33:25,583 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:25,583 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:25,583 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:25,583 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:25,583 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:25,583 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:25,583 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:25,584 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:25,584 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:25,584 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:25,584 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:25,584 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:25,584 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:25,584 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:25,584 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 11 ms - 164
2016-11-07 15:33:26,078 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:26,078 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:26,078 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:26,079 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:26,085 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:26,085 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:26,085 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:26,085 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:26,085 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:26,121 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:26,121 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:26,121 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:26,141 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:26,141 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:26,142 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 64 ms - 164
2016-11-07 15:33:26,146 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:26,146 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:26,147 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:26,147 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:26,149 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:26,151 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:26,151 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:26,151 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:26,151 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:26,162 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:26,162 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:26,162 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:26,175 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:26,175 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:26,177 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 30 ms - 164
2016-11-07 15:33:26,681 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:26,681 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:26,681 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:26,682 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:26,688 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:26,688 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:26,688 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:26,688 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:26,688 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:26,699 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:26,702 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:26,705 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:26,732 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:26,734 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:26,735 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 54 ms - 164
2016-11-07 15:33:26,739 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:26,739 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:26,740 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:26,740 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:26,744 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:26,746 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:26,748 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:26,750 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:26,752 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:26,781 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:26,783 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:26,785 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:26,804 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:26,805 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:26,806 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 67 ms - 164
2016-11-07 15:33:27,311 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:27,311 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:27,312 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:27,312 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:27,320 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:27,320 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:27,320 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:27,320 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:27,320 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:27,344 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:27,344 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:27,344 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:27,361 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:27,361 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:27,362 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 51 ms - 164
2016-11-07 15:33:27,366 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:27,367 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:27,367 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:27,368 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:27,373 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:27,373 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:27,373 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:27,373 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:27,373 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:27,382 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:27,384 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:27,384 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:27,391 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:27,393 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:27,395 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 28 ms - 164
2016-11-07 15:33:27,899 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:27,899 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:27,899 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:27,900 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:27,905 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:27,905 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:27,905 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:27,905 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:27,905 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:27,923 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:27,924 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:27,925 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:27,942 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:27,942 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:27,944 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 45 ms - 164
2016-11-07 15:33:27,948 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:27,949 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:27,949 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:27,949 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:27,952 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:27,953 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:27,953 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:27,953 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:27,953 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:27,980 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:27,982 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:27,984 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:28,004 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:28,005 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:28,011 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 63 ms - 164
2016-11-07 15:33:28,516 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:28,516 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:28,517 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:28,517 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:28,524 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:28,525 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:28,525 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:28,525 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:28,525 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:28,542 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:28,542 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:28,542 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:28,557 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:28,559 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:28,560 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 44 ms - 164
2016-11-07 15:33:28,564 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:28,564 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:28,564 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:28,565 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:28,569 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:28,571 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:28,573 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:28,575 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:28,579 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:28,615 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:28,615 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:28,616 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:28,631 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:28,631 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:28,632 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 68 ms - 164
2016-11-07 15:33:29,138 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:29,138 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:29,138 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:29,139 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:29,142 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:29,142 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:29,142 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:29,142 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:29,142 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:29,560 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:29,562 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:29,565 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:29,583 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:29,583 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:29,586 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 447 ms - 164
2016-11-07 15:33:29,589 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:29,589 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:29,590 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:29,590 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:29,594 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:29,596 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:29,598 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:29,600 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:29,602 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:29,611 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:29,613 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:29,614 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:29,626 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:29,628 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:29,629 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 40 ms - 164
2016-11-07 15:33:30,134 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:30,135 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:30,135 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:30,136 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:30,139 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:30,139 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:30,139 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:30,140 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:30,140 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:30,209 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:30,210 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:30,210 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:30,354 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:30,354 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:30,355 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 221 ms - 164
2016-11-07 15:33:30,359 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:30,359 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:30,359 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:30,360 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:30,362 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:30,362 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:30,362 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:30,362 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:30,362 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:30,383 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:30,384 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:30,384 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:30,398 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:30,398 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:30,399 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 40 ms - 164
2016-11-07 15:33:30,904 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:30,904 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:30,904 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:30,906 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:30,912 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:30,912 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:30,912 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:30,912 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:30,912 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:30,948 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:30,948 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:30,948 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:30,973 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:30,973 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:30,975 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 71 ms - 164
2016-11-07 15:33:30,978 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:30,979 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:30,980 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:30,981 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:30,987 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:30,988 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:30,988 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:30,988 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:30,988 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:31,027 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:31,027 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:31,028 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:31,049 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:31,049 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:31,051 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 73 ms - 164
2016-11-07 15:33:31,556 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:31,556 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:31,557 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:31,557 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:31,563 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:31,563 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:31,563 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:31,563 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:31,563 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:31,606 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:31,606 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:31,606 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:31,625 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:31,625 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:31,626 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 70 ms - 164
2016-11-07 15:33:31,632 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:31,632 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:31,633 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:31,634 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:31,636 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:31,637 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:31,637 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:31,637 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:31,637 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:31,665 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:31,667 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:31,668 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:31,680 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:31,682 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:31,682 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 51 ms - 164
2016-11-07 15:33:32,187 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:32,187 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:32,187 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:32,188 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:32,191 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:32,191 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:32,191 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:32,191 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:32,191 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:32,202 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:32,203 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:32,203 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:32,215 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:32,216 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:32,217 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 30 ms - 164
2016-11-07 15:33:32,221 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:32,221 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:32,221 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:32,222 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:32,224 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:32,225 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:32,226 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:32,227 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:32,228 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:32,252 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:32,253 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:32,254 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:32,285 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:32,285 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:32,287 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 66 ms - 164
2016-11-07 15:33:32,792 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:32,792 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:32,792 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:32,792 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:32,798 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:32,798 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:32,798 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:32,798 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:32,798 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:32,825 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:32,825 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:32,826 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:32,900 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:32,903 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:32,904 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 112 ms - 164
2016-11-07 15:33:32,908 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:32,908 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:32,908 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:32,908 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:32,912 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:32,914 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:32,916 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:32,917 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:32,920 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:32,957 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:32,957 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:32,957 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:33,002 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:33,002 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:33,003 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 95 ms - 164
2016-11-07 15:33:33,507 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:33,507 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:33,507 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:33,508 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:33,514 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:33,514 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:33,514 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:33,514 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:33,514 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:33,528 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:33,528 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:33,528 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:33,548 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:33,548 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:33,549 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 43 ms - 164
2016-11-07 15:33:33,553 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:33,554 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:33,554 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:33,554 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:33,559 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:33,559 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:33,560 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:33,560 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:33,560 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:33,603 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:33,605 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:33,606 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:33,638 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:33,640 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:33,641 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 87 ms - 164
2016-11-07 15:33:34,145 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:34,145 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:34,145 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:34,146 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:34,153 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:34,153 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:34,153 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:34,153 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:34,153 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:34,186 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:34,187 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:34,187 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:34,239 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:34,240 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:34,241 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 96 ms - 164
2016-11-07 15:33:34,245 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:34,245 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:34,245 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:34,246 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:34,248 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:34,248 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:34,249 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:34,249 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:34,249 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:34,270 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:34,270 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:34,270 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:34,296 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:34,297 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:34,298 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 53 ms - 164
2016-11-07 15:33:34,803 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:34,803 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:34,804 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:34,804 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:34,808 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:34,808 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:34,808 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:34,810 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:34,810 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:34,840 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:34,841 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:34,841 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:34,862 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:34,863 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:34,864 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 61 ms - 164
2016-11-07 15:33:34,867 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:34,868 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:34,868 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:34,868 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:34,871 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:34,871 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:34,871 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:34,871 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:34,872 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:34,879 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:34,880 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:34,880 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:34,889 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:34,889 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:34,890 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 22 ms - 164
2016-11-07 15:33:35,394 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:35,394 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:35,394 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:35,395 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:35,402 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:35,402 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:35,402 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:35,403 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:35,403 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:35,429 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:35,429 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:35,429 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:35,435 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:35,436 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:35,437 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 43 ms - 164
2016-11-07 15:33:35,441 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:35,441 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:35,442 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:35,442 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:35,450 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:35,450 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:35,451 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:35,451 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:35,451 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:35,481 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:35,481 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:35,481 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:35,516 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:35,516 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:35,517 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 76 ms - 164
2016-11-07 15:33:36,023 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:36,023 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:36,024 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:36,024 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:36,031 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:36,031 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:36,031 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:36,031 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:36,031 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:36,060 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:36,061 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:36,064 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:36,104 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:36,104 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:36,106 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 82 ms - 164
2016-11-07 15:33:36,109 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:36,110 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:36,110 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:36,111 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:36,115 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:36,115 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:36,115 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:36,115 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:36,115 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:36,142 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:36,146 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:36,147 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:36,167 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:36,168 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:36,169 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 60 ms - 164
2016-11-07 15:33:36,674 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:36,674 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:36,674 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:36,674 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:36,680 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:36,680 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:36,680 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:36,680 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:36,680 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:36,696 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:36,697 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:36,697 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:36,704 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:36,704 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:36,705 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 31 ms - 164
2016-11-07 15:33:36,709 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:36,709 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:36,711 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:36,711 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:36,714 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:36,714 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:36,715 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:36,716 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:36,719 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:36,748 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:36,750 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:36,751 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:36,774 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:36,774 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:36,775 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 66 ms - 164
2016-11-07 15:33:37,280 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:37,280 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:37,281 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:37,281 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:37,285 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:37,285 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:37,285 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:37,286 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:37,286 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:37,294 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:37,294 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:37,294 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:37,298 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:37,298 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:37,300 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 20 ms - 164
2016-11-07 15:33:37,303 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:37,304 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:37,304 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:37,304 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:37,308 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:37,309 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:37,309 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:37,310 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:37,311 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:37,317 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:37,319 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:37,319 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:37,347 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:37,347 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:37,348 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 44 ms - 164
2016-11-07 15:33:37,853 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:37,853 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:37,853 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:37,853 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:37,859 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:37,859 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:37,859 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:37,859 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:37,859 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:37,903 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:37,905 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:37,907 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:37,941 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:37,941 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:37,942 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 89 ms - 164
2016-11-07 15:33:37,946 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:37,946 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:37,947 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:37,947 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:37,949 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:37,951 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:37,951 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:37,951 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:37,952 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:37,995 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:37,995 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:37,995 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:38,022 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:38,024 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:38,025 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 79 ms - 164
2016-11-07 15:33:38,528 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:38,529 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:38,529 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:38,529 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:38,533 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:38,533 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:38,533 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:38,533 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:38,533 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:38,546 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:38,546 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:38,546 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:38,557 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:38,558 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:38,559 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 30 ms - 164
2016-11-07 15:33:38,563 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:38,563 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:38,563 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:38,563 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:38,565 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:38,566 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:38,566 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:38,566 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:38,566 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:38,570 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:38,571 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:38,572 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:38,577 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:38,578 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:38,579 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 17 ms - 164
2016-11-07 15:33:39,084 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:39,084 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:39,084 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:39,084 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:39,089 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:39,090 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:39,090 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:39,090 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:39,090 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:39,196 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:39,196 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:39,196 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:39,214 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:39,215 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:39,217 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 133 ms - 164
2016-11-07 15:33:39,221 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:39,221 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:39,221 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:39,222 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:39,226 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:39,227 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:39,227 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:39,227 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:39,227 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:39,242 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:39,242 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:39,243 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:39,260 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:39,261 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:39,262 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 41 ms - 164
2016-11-07 15:33:39,766 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:39,766 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:39,766 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:39,767 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:39,772 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:39,772 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:39,772 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:39,772 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:39,772 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:39,836 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:39,838 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:39,840 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:39,890 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:39,890 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:39,891 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 125 ms - 164
2016-11-07 15:33:39,894 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:39,895 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:39,895 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:39,896 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:39,899 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:39,900 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:39,900 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:39,901 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:39,901 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:39,955 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:39,956 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:39,956 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:39,993 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:39,994 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:39,995 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 100 ms - 164
2016-11-07 15:33:40,500 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:40,500 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:40,500 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:40,501 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:40,506 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:40,506 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:40,506 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:40,506 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:40,507 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:40,522 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:40,522 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:40,522 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:40,529 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:40,533 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:40,534 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 34 ms - 164
2016-11-07 15:33:40,538 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:40,538 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:40,538 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:40,538 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:40,542 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:40,544 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:40,544 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:40,545 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:40,545 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:40,580 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:40,582 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:40,583 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:40,594 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:40,596 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:40,597 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 59 ms - 164
2016-11-07 15:33:41,102 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:41,102 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:41,102 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:41,103 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:41,109 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:41,109 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:41,109 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:41,109 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:41,109 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:41,122 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:41,125 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:41,127 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:41,166 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:41,167 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:41,167 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 65 ms - 164
2016-11-07 15:33:41,171 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:41,172 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:41,172 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:41,172 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:41,176 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:41,176 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:41,176 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:41,176 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:41,176 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:41,243 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:41,243 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:41,243 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:41,266 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:41,266 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:41,268 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 96 ms - 164
2016-11-07 15:33:41,772 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:41,772 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:41,772 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:41,773 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:41,775 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:41,775 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:41,776 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:41,776 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:41,776 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:41,780 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:41,781 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:41,781 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:41,785 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:41,785 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:41,786 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 14 ms - 164
2016-11-07 15:33:41,790 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:41,790 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:41,790 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:41,790 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:41,793 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:41,793 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:41,794 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:41,794 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:41,794 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:41,804 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:41,805 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:41,805 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:41,816 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:41,816 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:41,817 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 27 ms - 164
2016-11-07 15:33:42,322 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:42,322 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:42,323 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:42,323 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:42,326 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:42,327 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:42,327 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:42,327 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:42,327 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:42,339 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:42,339 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:42,340 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:42,351 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:42,351 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:42,352 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 30 ms - 164
2016-11-07 15:33:42,356 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:42,356 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:42,356 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:42,357 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:42,359 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:42,359 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:42,359 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:42,359 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:42,359 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:42,371 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:42,371 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:42,371 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:42,375 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:42,376 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:42,376 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 20 ms - 164
2016-11-07 15:33:42,880 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:42,881 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:42,881 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:42,881 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:42,888 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:42,888 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:42,888 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:42,888 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:42,888 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:42,898 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:42,898 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:42,900 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:42,944 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:42,944 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:42,945 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 64 ms - 164
2016-11-07 15:33:42,948 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:42,949 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:42,949 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:42,949 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:42,952 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:42,953 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:42,953 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:42,953 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:42,953 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:42,998 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:42,999 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:43,000 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:43,035 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:43,035 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:43,036 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 88 ms - 164
2016-11-07 15:33:43,541 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:43,541 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:43,541 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:43,541 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:43,545 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:43,545 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:43,545 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:43,545 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:43,545 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:43,558 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:43,558 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:43,558 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:43,577 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:43,577 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:43,579 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 38 ms - 164
2016-11-07 15:33:43,583 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:43,583 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:43,583 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:43,584 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:43,586 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:43,586 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:43,586 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:43,586 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:43,587 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:43,607 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:43,607 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:43,607 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:43,627 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:43,627 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:43,628 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 45 ms - 164
2016-11-07 15:33:44,133 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:44,133 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:44,133 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:44,133 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:44,141 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:44,142 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:44,142 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:44,142 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:44,142 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:44,191 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:44,192 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:44,193 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:44,210 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:44,212 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:44,213 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 80 ms - 164
2016-11-07 15:33:44,216 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:44,216 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:44,217 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:44,217 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:44,225 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:44,225 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:44,225 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:44,225 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:44,225 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:44,256 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:44,256 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:44,256 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:44,283 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:44,283 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:44,284 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 68 ms - 164
2016-11-07 15:33:44,789 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:44,789 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:44,789 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:44,789 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:44,792 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:44,792 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:44,793 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:44,793 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:44,793 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:44,804 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:44,804 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:44,804 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:44,816 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:44,817 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:44,818 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 29 ms - 164
2016-11-07 15:33:44,821 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:44,821 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:44,822 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:44,822 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:44,824 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:44,824 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:44,824 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:44,824 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:44,825 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:44,837 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:44,837 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:44,838 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:44,851 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:44,851 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:44,852 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 31 ms - 164
2016-11-07 15:33:45,357 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:45,357 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:45,357 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:45,358 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:45,363 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:45,363 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:45,363 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:45,363 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:45,363 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:45,412 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:45,413 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:45,413 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:45,430 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:45,431 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:45,432 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 75 ms - 164
2016-11-07 15:33:45,435 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:45,436 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:45,436 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:45,438 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:45,438 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:45,439 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:45,440 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:45,440 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:45,441 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:45,462 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:45,462 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:45,464 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:45,490 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:45,490 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:45,491 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 56 ms - 164
2016-11-07 15:33:45,996 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:45,996 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:45,996 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:45,996 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:46,002 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:46,003 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:46,003 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:46,003 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:46,004 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:46,018 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:46,021 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:46,023 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:46,076 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:46,077 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:46,078 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 82 ms - 164
2016-11-07 15:33:46,081 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:46,081 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:46,082 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:46,082 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:46,087 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:46,088 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:46,088 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:46,088 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:46,088 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:46,140 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:46,140 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:46,140 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:46,190 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:46,191 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:46,192 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 110 ms - 164
2016-11-07 15:33:46,696 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:46,696 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:46,696 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:46,697 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:46,702 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:46,702 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:46,703 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:46,703 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:46,703 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:46,731 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:46,735 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:46,736 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:46,767 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:46,769 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:46,770 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 75 ms - 164
2016-11-07 15:33:46,774 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:46,774 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:46,775 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:46,775 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:46,778 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:46,780 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:46,783 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:46,785 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:46,786 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:46,796 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:46,799 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:46,799 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:46,810 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:46,810 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:46,811 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 37 ms - 164
2016-11-07 15:33:47,316 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:47,316 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:47,317 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:47,317 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:47,323 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:47,323 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:47,323 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:47,323 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:47,323 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:47,340 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:47,340 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:47,340 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:47,348 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:47,348 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:47,350 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 33 ms - 164
2016-11-07 15:33:47,353 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:47,353 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:47,354 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:47,354 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:47,357 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:47,358 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:47,358 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:47,358 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:47,359 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:47,405 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:47,405 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:47,406 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:47,444 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:47,451 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:47,452 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 99 ms - 164
2016-11-07 15:33:47,957 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:47,957 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:47,957 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:47,957 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:47,962 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:47,962 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:47,962 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:47,962 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:47,962 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:47,980 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:47,980 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:47,981 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:47,993 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:47,993 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:47,994 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 37 ms - 164
2016-11-07 15:33:47,997 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:47,997 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:47,998 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:47,998 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:48,001 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:48,001 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:48,001 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:48,001 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:48,001 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:48,012 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:48,013 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:48,013 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:48,025 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:48,025 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:48,026 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 28 ms - 164
2016-11-07 15:33:48,530 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:48,530 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:48,530 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:48,531 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:48,536 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:48,537 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:48,537 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:48,537 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:48,537 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:48,565 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:48,565 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:48,565 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:48,590 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:48,591 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:48,592 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 62 ms - 164
2016-11-07 15:33:48,596 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:48,596 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:48,597 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:48,597 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:48,599 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:48,600 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:48,600 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:48,600 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:48,601 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:48,621 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:48,621 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:48,626 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:48,646 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:48,647 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:48,648 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 52 ms - 164
2016-11-07 15:33:49,153 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:49,153 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:49,154 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:49,154 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:49,159 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:49,159 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:49,159 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:49,160 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:49,160 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:49,202 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:49,202 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:49,202 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:49,215 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:49,215 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:49,218 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 65 ms - 164
2016-11-07 15:33:49,221 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:49,222 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:49,222 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:49,224 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:49,228 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:49,229 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:49,229 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:49,229 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:49,229 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:49,239 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:49,242 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:49,244 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:49,289 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:49,290 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:49,291 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 69 ms - 164
2016-11-07 15:33:49,795 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:49,795 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:49,795 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:49,796 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:49,799 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:49,802 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:49,802 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:49,802 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:49,802 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:49,806 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:49,807 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:49,807 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:49,819 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:49,820 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:49,821 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 26 ms - 164
2016-11-07 15:33:49,824 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:49,824 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:49,825 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:49,825 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:49,828 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:49,828 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:49,829 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:49,829 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:49,829 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:49,849 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:49,849 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:49,849 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:49,867 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:49,868 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:49,869 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 44 ms - 164
2016-11-07 15:33:50,373 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:50,373 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:50,373 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:50,373 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:50,381 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:50,381 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:50,381 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:50,381 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:50,381 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:50,405 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:50,405 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:50,405 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:50,438 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:50,438 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:50,439 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 67 ms - 164
2016-11-07 15:33:50,443 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:50,443 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:50,444 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:50,444 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:50,446 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:50,447 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:50,447 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:50,447 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:50,447 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:50,467 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:50,468 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:50,468 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:50,479 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:50,479 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:50,481 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 37 ms - 164
2016-11-07 15:33:50,985 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:50,985 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:50,985 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:50,985 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:50,991 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:50,992 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:50,992 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:50,992 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:50,992 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:51,018 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:51,019 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:51,021 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:51,050 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:51,051 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:51,052 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 67 ms - 164
2016-11-07 15:33:51,055 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:51,055 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:51,056 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:51,056 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:51,060 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:51,062 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:51,064 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:51,072 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:51,079 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:51,094 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:51,094 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:51,095 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:51,106 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:51,108 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:51,109 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 54 ms - 164
2016-11-07 15:33:51,614 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:51,614 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:51,614 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:51,615 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:51,620 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:51,620 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:51,620 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:51,621 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:51,622 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:51,654 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:51,654 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:51,654 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:51,682 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:51,682 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:51,683 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 69 ms - 164
2016-11-07 15:33:51,687 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:51,687 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:51,687 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:51,688 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:51,689 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:51,690 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:51,690 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:51,690 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:51,691 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:51,713 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:51,714 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:51,715 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:51,735 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:51,735 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:51,736 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 49 ms - 164
2016-11-07 15:33:52,241 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:52,241 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:52,241 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:52,242 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:52,248 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:52,248 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:52,248 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:52,249 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:52,249 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:52,287 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:52,290 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:52,292 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:52,313 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:52,315 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:52,317 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 76 ms - 164
2016-11-07 15:33:52,320 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:52,321 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:52,321 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:52,321 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:52,325 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:52,327 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:52,327 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:52,328 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:52,330 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:52,361 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:52,369 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:52,369 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:52,404 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:52,405 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:52,406 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 86 ms - 164
2016-11-07 15:33:52,911 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:52,911 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:52,911 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:52,912 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:52,915 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:52,915 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:52,915 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:52,915 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:52,915 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:52,940 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:52,941 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:52,942 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:52,989 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:52,989 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:52,990 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 79 ms - 164
2016-11-07 15:33:52,993 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:52,994 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:52,994 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:52,994 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:52,997 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:52,999 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:53,001 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:53,006 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:53,008 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:53,052 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:53,053 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:53,054 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:53,081 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:53,084 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:53,084 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 90 ms - 164
2016-11-07 15:33:53,588 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:53,588 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:53,594 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:53,594 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:53,599 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:53,599 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:53,599 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:53,599 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:53,599 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:53,628 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:53,628 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:53,628 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:53,655 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:53,655 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:53,656 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 68 ms - 164
2016-11-07 15:33:53,660 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:53,660 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:53,661 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:53,661 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:53,664 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:53,664 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:53,664 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:53,664 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:53,664 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:53,678 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:53,678 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:53,678 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:53,683 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:53,683 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:53,684 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 24 ms - 164
2016-11-07 15:33:54,189 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:54,190 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:54,191 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:54,191 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:54,196 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:54,196 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:54,196 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:54,196 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:54,196 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:54,235 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:54,236 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:54,237 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:54,269 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:54,269 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:54,270 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 81 ms - 164
2016-11-07 15:33:54,274 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:54,274 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:54,275 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:54,275 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:54,279 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:54,283 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:54,285 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:54,288 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:54,291 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:54,329 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:54,331 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:54,333 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:54,361 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:54,363 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:54,364 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 90 ms - 164
2016-11-07 15:33:54,869 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:54,869 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:54,869 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:54,869 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:54,875 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:54,876 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:54,876 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:54,876 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:54,876 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:54,886 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:54,886 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:54,886 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:54,907 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:54,907 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:54,908 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 39 ms - 164
2016-11-07 15:33:54,911 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:54,912 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:54,912 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:54,912 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:54,916 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:54,916 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:54,916 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:54,916 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:54,916 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:54,935 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:54,935 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:54,935 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:54,956 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:54,956 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:54,958 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 46 ms - 164
2016-11-07 15:33:55,462 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:55,462 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:55,462 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:55,463 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:55,468 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:55,468 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:55,468 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:55,468 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:55,469 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:55,498 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:55,499 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:55,499 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:55,507 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:55,510 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:55,512 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 49 ms - 164
2016-11-07 15:33:55,516 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:55,516 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:55,516 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:55,517 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:55,523 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:55,524 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:55,524 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:55,524 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:55,524 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:55,605 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:55,608 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:55,609 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:55,645 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:55,645 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:55,646 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 130 ms - 164
2016-11-07 15:33:56,151 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:56,151 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:56,151 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:56,152 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:56,158 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:56,158 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:56,158 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:56,158 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:56,158 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:56,198 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:56,199 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:56,200 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:56,221 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:56,221 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:56,222 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 71 ms - 164
2016-11-07 15:33:56,226 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:56,226 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:56,226 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:56,227 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:56,230 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:56,230 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:56,230 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:56,230 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:56,232 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:56,250 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:56,251 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:56,252 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:56,279 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:56,279 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:56,281 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 55 ms - 164
2016-11-07 15:33:56,791 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:56,793 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:56,793 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:56,795 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:56,799 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:56,799 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:56,799 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:56,800 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:56,800 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:56,814 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:56,817 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:56,819 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:56,859 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:56,860 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:56,866 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 71 ms - 164
2016-11-07 15:33:56,868 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:56,869 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:56,870 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:56,870 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:56,875 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:56,876 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:56,876 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:56,876 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:56,876 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:56,953 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:56,953 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:56,953 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:56,971 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:56,972 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:56,973 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 105 ms - 164
2016-11-07 15:33:57,477 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:57,477 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:57,477 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:57,478 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:57,484 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:57,484 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:57,484 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:57,484 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:57,484 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:57,507 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:57,507 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:57,508 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:57,544 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:57,544 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:57,545 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 68 ms - 164
2016-11-07 15:33:57,549 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:57,549 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:57,549 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:57,550 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:57,553 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:57,553 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:57,553 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:57,553 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:57,554 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:57,581 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:57,581 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:57,581 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:57,599 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:57,599 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:57,600 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 51 ms - 164
2016-11-07 15:33:58,105 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:58,105 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:58,106 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:58,108 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:58,114 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:58,114 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:58,114 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:58,114 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:58,114 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:58,124 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:58,126 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:58,128 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:58,155 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:58,155 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:58,156 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 51 ms - 164
2016-11-07 15:33:58,160 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:58,161 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:58,161 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:58,162 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:58,164 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:58,165 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:58,165 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:58,165 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:58,165 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:58,183 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:58,183 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:58,183 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:58,192 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:58,194 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:58,195 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 35 ms - 164
2016-11-07 15:33:58,698 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:58,699 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:58,699 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:58,700 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:58,705 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:58,705 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:58,705 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:58,706 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:58,706 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:58,748 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:58,748 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:58,748 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:58,762 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:58,762 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:58,763 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 64 ms - 164
2016-11-07 15:33:58,766 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:58,766 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:58,767 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:58,767 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:58,773 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:58,773 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:58,773 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:58,773 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:58,773 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:58,799 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:58,799 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:58,799 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:58,809 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:58,809 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:58,810 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 44 ms - 164
2016-11-07 15:33:59,314 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:59,314 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:59,314 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:59,314 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:59,318 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:59,318 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:59,318 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:59,318 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:59,318 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:59,340 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:59,341 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:59,342 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:59,362 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:59,362 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:59,363 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 50 ms - 164
2016-11-07 15:33:59,367 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:59,367 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:59,367 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:59,367 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:59,371 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:59,372 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:59,372 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:59,372 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:59,372 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:59,385 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:59,385 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:59,385 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:59,392 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:59,392 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:59,393 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 27 ms - 164
2016-11-07 15:33:59,897 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:33:59,897 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:59,898 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:59,898 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:59,905 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:33:59,905 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:59,905 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:59,905 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:59,905 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:59,918 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:59,918 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:59,919 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:33:59,931 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:33:59,933 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:33:59,934 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 37 ms - 164
2016-11-07 15:33:59,938 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:33:59,938 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:33:59,939 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:33:59,939 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:59,942 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:33:59,944 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:33:59,946 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:33:59,946 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:33:59,947 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:33:59,998 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:33:59,998 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:00,000 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:00,032 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:00,032 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:00,033 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 95 ms - 164
2016-11-07 15:34:00,538 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:00,538 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:00,538 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:00,539 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:00,541 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:00,542 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:00,542 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:00,542 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:00,542 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:00,554 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:00,554 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:00,554 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:00,566 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:00,566 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:00,567 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 29 ms - 164
2016-11-07 15:34:00,571 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:00,571 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:00,571 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:00,572 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:00,574 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:00,574 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:00,575 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:00,575 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:00,575 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:00,579 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:00,580 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:00,580 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:00,595 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:00,596 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:00,597 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 26 ms - 164
2016-11-07 15:34:01,101 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:01,101 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:01,101 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:01,101 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:01,104 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:01,104 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:01,105 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:01,105 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:01,105 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:01,119 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:01,120 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:01,120 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:01,132 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:01,132 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:01,133 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 32 ms - 164
2016-11-07 15:34:01,136 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:01,137 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:01,137 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:01,137 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:01,139 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:01,139 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:01,140 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:01,140 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:01,141 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:01,154 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:01,154 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:01,154 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:01,166 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:01,166 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:01,168 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 31 ms - 164
2016-11-07 15:34:01,672 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:01,672 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:01,672 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:01,673 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:01,679 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:01,679 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:01,679 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:01,680 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:01,680 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:01,696 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:01,696 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:01,696 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:01,711 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:01,711 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:01,712 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 41 ms - 164
2016-11-07 15:34:01,716 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:01,716 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:01,716 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:01,717 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:01,722 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:01,724 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:01,727 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:01,730 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:01,732 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:01,743 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:01,745 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:01,747 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:01,797 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:01,797 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:01,798 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 82 ms - 164
2016-11-07 15:34:02,303 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:02,303 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:02,303 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:02,303 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:02,312 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:02,312 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:02,312 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:02,312 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:02,312 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:02,319 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:02,319 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:02,319 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:02,330 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:02,330 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:02,331 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 29 ms - 164
2016-11-07 15:34:02,335 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:02,335 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:02,335 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:02,336 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:02,337 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:02,338 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:02,338 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:02,338 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:02,339 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:02,350 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:02,350 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:02,351 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:02,364 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:02,364 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:02,366 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 30 ms - 164
2016-11-07 15:34:02,870 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:02,870 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:02,870 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:02,871 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:02,876 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:02,876 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:02,877 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:02,877 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:02,877 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:02,886 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:02,887 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:02,889 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:02,902 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:02,902 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:02,903 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 34 ms - 164
2016-11-07 15:34:02,907 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:02,908 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:02,908 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:02,909 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:02,913 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:02,913 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:02,914 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:02,914 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:02,914 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:02,948 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:02,951 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:02,953 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:02,984 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:02,985 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:02,986 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 78 ms - 164
2016-11-07 15:34:03,490 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:03,490 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:03,490 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:03,491 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:03,496 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:03,496 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:03,497 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:03,497 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:03,497 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:03,542 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:03,542 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:03,543 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:03,566 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:03,566 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:03,567 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 77 ms - 164
2016-11-07 15:34:03,570 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:03,571 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:03,571 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:03,571 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:03,574 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:03,575 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:03,576 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:03,576 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:03,577 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:03,586 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:03,588 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:03,588 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:03,606 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:03,606 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:03,608 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 37 ms - 164
2016-11-07 15:34:04,112 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:04,112 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:04,112 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:04,113 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:04,116 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:04,116 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:04,117 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:04,117 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:04,117 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:04,145 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:04,145 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:04,145 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:04,164 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:04,164 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:04,165 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 53 ms - 164
2016-11-07 15:34:04,169 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:04,169 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:04,169 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:04,170 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:04,173 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:04,174 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:04,174 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:04,174 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:04,174 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:04,187 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:04,188 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:04,188 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:04,214 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:04,214 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:04,215 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 46 ms - 164
2016-11-07 15:34:04,719 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:04,719 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:04,719 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:04,720 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:04,725 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:04,726 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:04,727 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:04,727 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:04,727 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:04,738 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:04,739 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:04,739 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:04,780 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:04,782 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:04,783 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 64 ms - 164
2016-11-07 15:34:04,786 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:04,787 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:04,787 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:04,788 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:04,791 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:04,793 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:04,793 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:04,795 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:04,797 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:04,836 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:04,837 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:04,837 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:04,849 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:04,850 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:04,851 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 64 ms - 164
2016-11-07 15:34:05,355 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:05,355 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:05,355 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:05,356 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:05,358 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:05,359 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:05,359 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:05,359 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:05,359 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:05,377 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:05,377 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:05,377 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:05,389 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:05,389 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:05,390 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 35 ms - 164
2016-11-07 15:34:05,393 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:05,393 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:05,394 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:05,394 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:05,397 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:05,397 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:05,397 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:05,397 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:05,397 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:05,410 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:05,410 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:05,410 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:05,421 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:05,422 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:05,428 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 34 ms - 164
2016-11-07 15:34:05,932 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:05,932 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:05,932 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:05,932 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:05,939 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:05,939 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:05,940 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:05,940 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:05,940 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:05,985 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:05,985 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:05,985 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:06,022 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:06,024 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:06,025 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 93 ms - 164
2016-11-07 15:34:06,028 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:06,028 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:06,029 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:06,029 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:06,032 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:06,032 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:06,032 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:06,033 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:06,033 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:06,051 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:06,052 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:06,052 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:06,080 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:06,080 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:06,081 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 53 ms - 164
2016-11-07 15:34:06,585 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:06,585 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:06,585 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:06,586 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:06,588 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:06,588 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:06,588 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:06,589 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:06,589 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:06,599 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:06,600 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:06,601 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:06,615 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:06,615 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:06,616 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 31 ms - 164
2016-11-07 15:34:06,619 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:06,620 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:06,620 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:06,620 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:06,622 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:06,622 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:06,623 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:06,623 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:06,623 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:06,638 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:06,638 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:06,638 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:06,650 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:06,652 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:06,652 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 32 ms - 164
2016-11-07 15:34:07,156 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:07,156 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:07,156 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:07,157 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:07,160 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:07,160 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:07,160 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:07,160 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:07,160 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:07,184 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:07,185 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:07,185 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:07,197 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:07,197 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:07,198 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 43 ms - 164
2016-11-07 15:34:07,202 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:07,202 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:07,202 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:07,203 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:07,205 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:07,205 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:07,205 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:07,205 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:07,206 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:07,218 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:07,218 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:07,218 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:07,231 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:07,232 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:07,233 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 31 ms - 164
2016-11-07 15:34:07,737 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:07,737 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:07,737 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:07,738 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:07,743 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:07,744 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:07,744 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:07,744 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:07,744 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:07,789 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:07,791 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:07,793 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:07,837 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:07,837 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:07,838 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 101 ms - 164
2016-11-07 15:34:07,841 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:07,842 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:07,842 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:07,843 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:07,848 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:07,848 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:07,848 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:07,848 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:07,849 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:07,885 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:07,885 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:07,885 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:07,915 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:07,916 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:07,917 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 75 ms - 164
2016-11-07 15:34:08,421 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:08,421 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:08,421 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:08,422 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:08,425 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:08,425 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:08,426 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:08,426 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:08,426 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:08,440 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:08,440 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:08,440 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:08,451 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:08,452 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:08,452 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 32 ms - 164
2016-11-07 15:34:08,456 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:08,456 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:08,457 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:08,457 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:08,460 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:08,460 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:08,460 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:08,460 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:08,461 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:08,476 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:08,476 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:08,476 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:08,487 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:08,487 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:08,488 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 32 ms - 164
2016-11-07 15:34:08,993 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:08,993 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:08,993 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:08,994 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:08,997 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:08,997 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:08,997 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:08,997 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:08,998 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:09,008 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:09,008 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:09,008 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:09,021 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:09,021 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:09,024 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 30 ms - 164
2016-11-07 15:34:09,025 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:09,026 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:09,026 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:09,026 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:09,028 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:09,028 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:09,029 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:09,029 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:09,029 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:09,043 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:09,043 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:09,044 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:09,055 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:09,056 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:09,057 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 31 ms - 164
2016-11-07 15:34:09,561 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:09,561 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:09,561 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:09,561 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:09,568 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:09,568 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:09,568 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:09,568 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:09,569 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:09,586 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:09,588 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:09,600 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:09,662 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:09,662 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:09,663 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 102 ms - 164
2016-11-07 15:34:09,666 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:09,667 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:09,667 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:09,667 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:09,672 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:09,672 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:09,673 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:09,673 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:09,673 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:09,734 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:09,735 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:09,735 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:09,757 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:09,758 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:09,759 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 92 ms - 164
2016-11-07 15:34:10,263 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:10,263 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:10,263 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:10,264 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:10,270 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:10,270 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:10,270 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:10,270 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:10,271 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:10,284 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:10,284 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:10,284 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:10,298 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:10,301 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:10,302 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 39 ms - 164
2016-11-07 15:34:10,305 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:10,306 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:10,306 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:10,306 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:10,310 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:10,312 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:10,316 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:10,317 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:10,318 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:10,361 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:10,362 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:10,363 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:10,405 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:10,406 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:10,407 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 101 ms - 164
2016-11-07 15:34:10,911 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:10,911 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:10,911 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:10,912 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:10,916 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:10,916 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:10,916 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:10,916 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:10,917 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:10,937 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:10,938 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:10,938 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:10,955 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:10,956 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:10,957 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 46 ms - 164
2016-11-07 15:34:10,960 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:10,960 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:10,961 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:10,961 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:10,963 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:10,963 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:10,963 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:10,964 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:10,966 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:10,989 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:10,989 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:10,990 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:11,007 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:11,007 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:11,008 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 48 ms - 164
2016-11-07 15:34:11,512 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:11,512 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:11,512 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:11,513 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:11,518 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:11,518 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:11,518 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:11,519 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:11,519 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:11,530 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:11,531 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:11,532 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:11,544 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:11,544 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:11,545 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 33 ms - 164
2016-11-07 15:34:11,548 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:11,548 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:11,549 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:11,549 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:11,552 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:11,553 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:11,553 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:11,553 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:11,554 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:11,578 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:11,579 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:11,579 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:11,601 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:11,601 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:11,602 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 54 ms - 164
2016-11-07 15:34:12,106 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:12,106 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:12,107 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:12,108 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:12,111 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:12,111 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:12,111 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:12,112 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:12,112 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:12,123 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:12,123 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:12,124 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:12,134 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:12,135 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:12,136 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 30 ms - 164
2016-11-07 15:34:12,139 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:12,140 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:12,140 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:12,140 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:12,142 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:12,142 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:12,142 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:12,143 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:12,143 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:12,154 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:12,154 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:12,154 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:12,166 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:12,167 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:12,167 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 28 ms - 164
2016-11-07 15:34:12,672 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:12,672 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:12,672 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:12,673 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:12,678 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:12,678 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:12,678 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:12,678 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:12,679 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:12,692 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:12,693 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:12,693 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:12,740 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:12,741 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:12,742 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 70 ms - 164
2016-11-07 15:34:12,745 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:12,745 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:12,746 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:12,746 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:12,748 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:12,749 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:12,749 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:12,750 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:12,757 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:12,796 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:12,798 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:12,799 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:12,810 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:12,811 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:12,812 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 66 ms - 164
2016-11-07 15:34:13,316 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:13,316 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:13,317 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:13,317 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:13,324 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:13,324 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:13,324 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:13,325 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:13,325 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:13,368 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:13,369 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:13,369 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:13,391 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:13,391 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:13,392 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 76 ms - 164
2016-11-07 15:34:13,396 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:13,396 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:13,396 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:13,397 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:13,402 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:13,402 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:13,402 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:13,402 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:13,403 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:13,415 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:13,415 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:13,415 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:13,456 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:13,456 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:13,457 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 61 ms - 164
2016-11-07 15:34:13,961 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:13,961 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:13,961 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:13,962 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:13,968 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:13,969 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:13,969 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:13,969 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:13,969 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:13,981 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:13,985 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:13,989 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:14,002 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:14,005 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:14,006 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 45 ms - 164
2016-11-07 15:34:14,009 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:14,010 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:14,010 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:14,010 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:14,013 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:14,015 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:14,016 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:14,018 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:14,020 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:14,037 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:14,037 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:14,038 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:14,054 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:14,055 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:14,056 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 46 ms - 164
2016-11-07 15:34:14,561 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:14,561 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:14,561 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:14,562 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:14,564 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:14,565 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:14,565 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:14,565 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:14,565 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:14,569 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:14,569 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:14,569 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:14,573 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:14,574 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:14,575 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 14 ms - 164
2016-11-07 15:34:14,578 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:14,578 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:14,579 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:14,579 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:14,581 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:14,581 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:14,582 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:14,582 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:14,583 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:14,588 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:14,591 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:14,591 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:14,594 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:14,594 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:14,595 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 17 ms - 164
2016-11-07 15:34:15,099 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:15,099 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:15,099 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:15,100 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:15,105 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:15,105 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:15,105 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:15,106 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:15,106 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:15,120 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:15,120 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:15,120 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:15,133 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:15,134 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:15,135 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 36 ms - 164
2016-11-07 15:34:15,138 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:15,138 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:15,139 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:15,139 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:15,142 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:15,144 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:15,144 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:15,147 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:15,147 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:15,188 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:15,188 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:15,188 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:15,201 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:15,203 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:15,204 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 66 ms - 164
2016-11-07 15:34:15,708 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:15,708 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:15,708 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:15,709 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:15,714 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:15,715 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:15,715 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:15,715 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:15,715 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:15,739 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:15,739 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:15,739 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:15,774 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:15,776 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:15,777 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 69 ms - 164
2016-11-07 15:34:15,781 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:15,781 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:15,781 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:15,782 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:15,785 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:15,787 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:15,790 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:15,791 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:15,793 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:15,803 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:15,806 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:15,808 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:15,846 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:15,847 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:15,848 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 67 ms - 164
2016-11-07 15:34:16,351 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:16,352 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:16,352 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:16,353 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:16,357 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:16,357 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:16,357 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:16,358 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:16,358 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:16,391 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:16,391 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:16,391 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:16,421 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:16,422 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:16,423 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 71 ms - 164
2016-11-07 15:34:16,427 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:16,427 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:16,428 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:16,428 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:16,433 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:16,434 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:16,434 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:16,434 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:16,435 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:16,472 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:16,473 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:16,473 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:16,501 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:16,501 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:16,503 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 76 ms - 164
2016-11-07 15:34:17,008 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:17,008 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:17,008 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:17,009 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:17,012 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:17,012 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:17,012 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:17,012 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:17,013 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:17,024 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:17,025 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:17,025 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:17,035 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:17,035 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:17,036 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 29 ms - 164
2016-11-07 15:34:17,040 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:17,040 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:17,040 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:17,041 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:17,042 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:17,043 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:17,043 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:17,044 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:17,044 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:17,056 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:17,056 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:17,057 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:17,074 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:17,074 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:17,075 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/element 500 35 ms - 164
2016-11-07 15:34:17,105 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> GET /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/source {}
2016-11-07 15:34:17,106 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.getPageSource() with args: ["c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:17,107 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"source","params":{}}
2016-11-07 15:34:17,110 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"source","params":{}}
2016-11-07 15:34:17,110 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:17,110 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: source
2016-11-07 15:34:17,229 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] [UIAUTO STDOUT] [APPIUM-UIAUTO] [debug] Returning result: {"status":0,"value":"<?xml version=\"1.0\" encoding=\"UTF-8\"?><hierarchy rotation=\"0\"><android.widget.FrameLayout index=\"0\" text=\"\" class=\"android.widget.FrameLayout\" package=\"com.mycompany.myproject_goo\" content-desc=\"\" checkable=\"false\" checked=\"false\" clickable=\"false\" enabled=\"true\" focusable=\"false\" focused=\"false\" scrollable=\"false\" long-clickable=\"false\" password=\"false\" selected=\"false\" bounds=\"[188,765][1348,1186]\" resource-id=\"\" instance=\"0\"><android.widget.FrameLayout index=\"0\" text=\"\" class=\"android.widget.FrameLayout\" package=\"com.mycompany.myproject_goo\" content-desc=\"\" checkable=\"false\" checked=\"false\" clickable=\"false\" enabled=\"true\" focusable=\"false\" focused=\"false\" scrollable=\"false\" long-clickable=\"false\" password=\"false\" selected=\"false\" bounds=\"[220,797][1316,1154]\" resource-id=\"\" instance=\"1\"><android.widget.FrameLayout index=\"0\" text=\"\" class=\"android.widget.FrameLayout\" package=\"com.mycompany.myproject_goo\" content-desc=\"\" checkable=\"false\" checked=\"false\" clickable=\"false\" enabled=\"true\" focusable=\"false\" focused=\"false\" scrollable=\"false\" long-clickable=\"false\" password=\"false\" selected=\"false\" bounds=\"[220,797][1316,1154]\" resource-id=\"android:id\/content\" instance=\"2\"><android.widget.LinearLayout index=\"0\" text=\"\" class=\"android.widget.LinearLayout\" package=\"com.mycompany.myproject_goo\" content-desc=\"\" checkable=\"false\" checked=\"false\" clickable=\"false\" enabled=\"true\" focusable=\"false\" focused=\"false\" scrollable=\"false\" long-clickable=\"false\" password=\"false\" selected=\"false\" bounds=\"[220,797][1316,1154]\" resource-id=\"android:id\/parentPanel\" instance=\"0\"><android.widget.LinearLayout index=\"0\" text=\"\" class=\"android.widget.LinearLayout\" package=\"com.mycompany.myproject_goo\" content-desc=\"\" checkable=\"false\" checked=\"false\" clickable=\"false\" enabled=\"true\" focusable=\"false\" focused=\"false\" scrollable=\"false\" long-clickable=\"false\" password=\"false\" selected=\"false\" bounds=\"[220,797][1316,897]\" resource-id=\"android:id\/topPanel\" instance=\"1\"><android.widget.LinearLayout index=\"0\" text=\"\" class=\"android.widget.LinearLayout\" package=\"com.mycompany.myproject_goo\" content-desc=\"\" checkable=\"false\" checked=\"false\" clickable=\"false\" enabled=\"true\" focusable=\"false\" focused=\"false\" scrollable=\"false\" long-clickable=\"false\" password=\"false\" selected=\"false\" bounds=\"[220,797][1316,897]\" resource-id=\"android:id\/title_template\" instance=\"2\"><android.widget.ImageView index=\"0\" text=\"\" class=\"android.widget.ImageView\" package=\"com.mycompany.myproject_goo\" content-desc=\"\" checkable=\"false\" checked=\"false\" clickable=\"false\" enabled=\"true\" focusable=\"false\" focused=\"false\" scrollable=\"false\" long-clickable=\"false\" password=\"false\" selected=\"false\" bounds=\"[268,833][332,897]\" resource-id=\"android:id\/icon\" instance=\"0\"\/><android.widget.TextView index=\"1\" text=\"We're Having Trouble Connecting\" class=\"android.widget.TextView\" package=\"com.mycompany.myproject_goo\" content-desc=\"\" checkable=\"false\" checked=\"false\" clickable=\"false\" enabled=\"true\" focusable=\"false\" focused=\"false\" scrollable=\"false\" long-clickable=\"false\" password=\"false\" selected=\"false\" bounds=\"[348,838][1268,892]\" resource-id=\"android:id\/alertTitle\" instance=\"0\"\/><\/android.widget.LinearLayout><\/android.widget.LinearLayout><android.widget.FrameLayout index=\"1\" text=\"\" class=\"android.widget.FrameLayout\" package=\"com.mycompany.myproject_goo\" content-desc=\"\" checkable=\"false\" checked=\"false\" clickable=\"false\" enabled=\"true\" focusable=\"false\" focused=\"false\" scrollable=\"false\" long-clickable=\"false\" password=\"false\" selected=\"false\" bounds=\"[220,897][1316,1014]\" resource-id=\"android:id\/contentPanel\" instance=\"3\"><android.widget.ScrollView index=\"0\" text=\"\" class=\"android.widget.ScrollView\" packag
2016-11-07 15:34:17,229 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:17,229 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Stream still not complete, waiting
2016-11-07 15:34:17,230 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] [UIAUTO STDOUT] e=\"com.mycompany.myproject_goo\" content-desc=\"\" checkable=\"false\" checked=\"false\" clickable=\"false\" enabled=\"true\" focusable=\"false\" focused=\"false\" scrollable=\"false\" long-clickable=\"false\" password=\"false\" selected=\"false\" bounds=\"[220,897][1316,1014]\" resource-id=\"android:id\/scrollView\" instance=\"0\"><android.widget.LinearLayout index=\"0\" text=\"\" class=\"android.widget.LinearLayout\" package=\"com.mycompany.myproject_goo\" content-desc=\"\" checkable=\"false\" checked=\"false\" clickable=\"false\" enabled=\"true\" focusable=\"false\" focused=\"false\" scrollable=\"false\" long-clickable=\"false\" password=\"false\" selected=\"false\" bounds=\"[220,897][1316,1014]\" resource-id=\"\" instance=\"3\"><android.widget.TextView index=\"0\" text=\"We'll continue trying to connect, but let's get you started in offline mode.\" class=\"android.widget.TextView\" package=\"com.mycompany.myproject_goo\" content-desc=\"\" checkable=\"false\" checked=\"false\" clickable=\"false\" enabled=\"true\" focusable=\"false\" focused=\"false\" scrollable=\"false\" long-clickable=\"false\" password=\"false\" selected=\"false\" bounds=\"[220,897][1316,1014]\" resource-id=\"android:id\/message\" instance=\"1\"\/><\/android.widget.LinearLayout><\/android.widget.ScrollView><\/android.widget.FrameLayout><android.widget.LinearLayout index=\"2\" text=\"\" class=\"android.widget.LinearLayout\" package=\"com.mycompany.myproject_goo\" content-desc=\"\" checkable=\"false\" checked=\"false\" clickable=\"false\" enabled=\"true\" focusable=\"false\" focused=\"false\" scrollable=\"false\" long-clickable=\"false\" password=\"false\" selected=\"false\" bounds=\"[220,1014][1316,1154]\" resource-id=\"android:id\/buttonPanel\" instance=\"4\"><android.widget.Button index=\"0\" text=\"Go to Offline Mode\" class=\"android.widget.Button\" package=\"com.mycompany.myproject_goo\" content-desc=\"\" checkable=\"false\" checked=\"false\" clickable=\"true\" enabled=\"true\" focusable=\"true\" focused=\"false\" scrollable=\"false\" long-clickable=\"false\" password=\"false\" selected=\"false\" bounds=\"[963,1030][1292,1138]\" resource-id=\"android:id\/button1\" instance=\"0\"\/><\/android.widget.LinearLayout><\/android.widget.LinearLayout><\/android.widget.FrameLayout><\/android.widget.FrameLayout><\/android.widget.FrameLayout><\/hierarchy>"}[/APPIUM-UIAUTO]
2016-11-07 15:34:17,231 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:17,232 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Responding to client with driver.getPageSource() result: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><hierarchy rotation=\"0\"><android.widget.FrameLayout index=\"0\" text=\"\" class=\"android.widget.Frame...
2016-11-07 15:34:17,233 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- GET /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/source 200 129 ms - 6432
2016-11-07 15:34:17,243 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> GET /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/screenshot {}
2016-11-07 15:34:17,244 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.getScreenshot() with args: ["c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:17,246 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:34:17,268 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:34:17,269 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","/system/bin/rm","/data/local/tmp/screenshot.png;","/system/bin/screencap","-p","/data/local/tmp/screenshot.png"]
2016-11-07 15:34:18,742 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","pull","/data/local/tmp/screenshot.png","/var/folders/02/3_sg564j35lfmzhhg_xjlmxc0000gp/T/appium116107-19165-o4pf4p.png"]
2016-11-07 15:34:18,851 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Responding to client with driver.getScreenshot() result: "iVBORw0KGgoAAAANSUhEUgAABgAAAAgACAYAAADg0fg2AAAABHNCSVQICAgIfAhkiAAAIABJREFUeJzsnXe4HNVh9t+z5XZd9YokkIQKQoBEERKig0xzBRvbsXHcgpPPNonjL/kStyQOOImT2M...
2016-11-07 15:34:18,859 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- GET /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446/screenshot 200 1615 ms - 813434
2016-11-07 15:34:37,556 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> DELETE /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446 {}
2016-11-07 15:34:37,557 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.deleteSession() with args: ["c3b06d45-1569-4725-8281-b15a691ff446"]
2016-11-07 15:34:37,559 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidDriver] Shutting down Android driver
2016-11-07 15:34:37,560 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:34:37,580 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:34:37,580 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","am","force-stop","com.mycompany.myproject_goo"]
2016-11-07 15:34:38,794 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Pressing the HOME button
2016-11-07 15:34:38,794 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:34:38,814 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:34:38,815 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","input","keyevent",3]
2016-11-07 15:34:39,742 INFO [jfptest-nexus9 Appium Instance] [debug] [Logcat] Stopping logcat capture
2016-11-07 15:34:39,744 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"shutdown"}
2016-11-07 15:34:39,747 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"shutdown"}
2016-11-07 15:34:39,749 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type SHUTDOWN
2016-11-07 15:34:39,756 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":0,"value":"OK, shutting down"}
2016-11-07 15:34:39,757 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:39,757 INFO [jfptest-nexus9 Appium Instance] [debug] [UiAutomator] Shutting down UiAutomator
2016-11-07 15:34:39,758 INFO [jfptest-nexus9 Appium Instance] [debug] [UiAutomator] Moving to state 'stopping'
2016-11-07 15:34:39,760 INFO [jfptest-nexus9 Appium Instance] [debug] [UiAutomator] UiAutomator shut down normally
2016-11-07 15:34:39,760 INFO [jfptest-nexus9 Appium Instance] [debug] [UiAutomator] Moving to state 'stopped'
2016-11-07 15:34:39,761 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Attempting to kill all uiautomator processes
2016-11-07 15:34:39,761 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting all processes with uiautomator
2016-11-07 15:34:39,761 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:34:39,780 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:34:39,781 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","ps","uiautomator"]
2016-11-07 15:34:39,847 INFO [jfptest-nexus9 Appium Instance] [ADB] No uiautomator process found to kill, continuing...
2016-11-07 15:34:39,848 INFO [jfptest-nexus9 Appium Instance] [debug] [UiAutomator] Moving to state 'stopped'
2016-11-07 15:34:39,848 INFO [jfptest-nexus9 Appium Instance] [Appium] Removing session c3b06d45-1569-4725-8281-b15a691ff446 from our master session list
2016-11-07 15:34:39,848 INFO [jfptest-nexus9 Appium Instance] [debug] [MJSONWP] Received response: null
2016-11-07 15:34:39,849 INFO [jfptest-nexus9 Appium Instance] [debug] [MJSONWP] But deleting session, so not returning
2016-11-07 15:34:39,849 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Responding to client with driver.deleteSession() result: null
2016-11-07 15:34:39,850 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- DELETE /wd/hub/session/c3b06d45-1569-4725-8281-b15a691ff446 200 2292 ms - 76
2016-11-07 15:34:44,858 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session {"desiredCapabilities":{"app":"/opt/jenkins/tmp/myproject-development.apk","noReset":true,"newCommandTimeout":"720","appiumVersion":"1.5.3","takesScreenshot":true,"udid":"HT4CCJT02164","platformName":"Android","deviceName":"flounder","fullReset":false}}
2016-11-07 15:34:44,858 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.createSession() with args: [{"app":"/opt/jenkins/tmp/myproject-development.apk","noReset":true,"newCommandTimeout":"720","appiumVersion":"1.5.3","takesScreenshot":true,"udid...
2016-11-07 15:34:44,859 INFO [jfptest-nexus9 Appium Instance] [Appium] Creating new AndroidDriver session
2016-11-07 15:34:44,859 INFO [jfptest-nexus9 Appium Instance] [Appium] Capabilities:
2016-11-07 15:34:44,860 INFO [jfptest-nexus9 Appium Instance] [Appium] app: '/opt/jenkins/tmp/myproject-development.apk'
2016-11-07 15:34:44,860 INFO [jfptest-nexus9 Appium Instance] [Appium] noReset: true
2016-11-07 15:34:44,860 INFO [jfptest-nexus9 Appium Instance] [Appium] newCommandTimeout: '720'
2016-11-07 15:34:44,861 INFO [jfptest-nexus9 Appium Instance] [Appium] appiumVersion: '1.5.3'
2016-11-07 15:34:44,861 INFO [jfptest-nexus9 Appium Instance] [Appium] takesScreenshot: true
2016-11-07 15:34:44,861 INFO [jfptest-nexus9 Appium Instance] [Appium] udid: 'HT4CCJT02164'
2016-11-07 15:34:44,861 INFO [jfptest-nexus9 Appium Instance] [Appium] platformName: 'Android'
2016-11-07 15:34:44,862 INFO [jfptest-nexus9 Appium Instance] [Appium] deviceName: 'flounder'
2016-11-07 15:34:44,862 INFO [jfptest-nexus9 Appium Instance] [Appium] fullReset: false
2016-11-07 15:34:44,863 INFO [jfptest-nexus9 Appium Instance] [BaseDriver] Capability 'newCommandTimeout' changed from string ('720') to integer (720). This may cause unexpected behavior
2016-11-07 15:34:44,864 INFO [jfptest-nexus9 Appium Instance] [BaseDriver] The following capabilities were provided, but are not recognized by appium: appiumVersion, takesScreenshot.
2016-11-07 15:34:44,865 INFO [jfptest-nexus9 Appium Instance] [BaseDriver] Session created with session id: a60a759d-c809-478b-b755-b6821fcd10c2
2016-11-07 15:34:44,866 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidDriver] Getting Java version
2016-11-07 15:34:44,940 INFO [jfptest-nexus9 Appium Instance] [AndroidDriver] Java version is: 1.8.0_45
2016-11-07 15:34:44,941 INFO [jfptest-nexus9 Appium Instance] [ADB] Checking whether adb is present
2016-11-07 15:34:44,943 INFO [jfptest-nexus9 Appium Instance] [ADB] Using adb from /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb
2016-11-07 15:34:44,944 INFO [jfptest-nexus9 Appium Instance] [AndroidDriver] Retrieving device list
2016-11-07 15:34:44,944 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Trying to find a connected android device
2016-11-07 15:34:44,944 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:34:44,964 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:34:44,965 INFO [jfptest-nexus9 Appium Instance] [AndroidDriver] Using device: HT4CCJT02164
2016-11-07 15:34:44,965 INFO [jfptest-nexus9 Appium Instance] [ADB] Checking whether adb is present
2016-11-07 15:34:44,967 INFO [jfptest-nexus9 Appium Instance] [ADB] Using adb from /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb
2016-11-07 15:34:44,967 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Setting device id to HT4CCJT02164
2016-11-07 15:34:44,967 INFO [jfptest-nexus9 Appium Instance] [BaseDriver] Using local app '/opt/jenkins/tmp/myproject-development.apk'
2016-11-07 15:34:44,968 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidDriver] Checking whether app is actually present
2016-11-07 15:34:44,968 INFO [jfptest-nexus9 Appium Instance] [AndroidDriver] Starting Android session
2016-11-07 15:34:44,969 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","wait-for-device"]
2016-11-07 15:34:44,989 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:34:45,010 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:34:45,010 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","echo","ping"]
2016-11-07 15:34:45,050 INFO [jfptest-nexus9 Appium Instance] [debug] [Logcat] Starting logcat capture
2016-11-07 15:34:45,087 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidDriver] Pushing settings apk to device...
2016-11-07 15:34:45,088 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","install","/usr/local/lib/node_modules/appium/node_modules/appium-android-driver/node_modules/io.appium.settings/bin/settings_apk-debug.apk"]
2016-11-07 15:34:46,131 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidDriver] Pushing unlock helper app to device...
2016-11-07 15:34:46,131 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","install","/usr/local/lib/node_modules/appium/node_modules/appium-android-driver/node_modules/appium-unlock/bin/unlock_apk-debug.apk"]
2016-11-07 15:34:46,771 INFO [jfptest-nexus9 Appium Instance] [ADB] Getting device platform version
2016-11-07 15:34:46,772 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:34:46,792 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:34:46,792 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","getprop","ro.build.version.release"]
2016-11-07 15:34:46,826 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:34:46,846 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:34:46,847 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","dumpsys","window"]
2016-11-07 15:34:46,907 INFO [jfptest-nexus9 Appium Instance] [AndroidDriver] Screen already unlocked, doing nothing
2016-11-07 15:34:46,907 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidDriver] Parsing package and activity from app manifest
2016-11-07 15:34:46,908 INFO [jfptest-nexus9 Appium Instance] [ADB] Checking whether aapt is present
2016-11-07 15:34:46,909 INFO [jfptest-nexus9 Appium Instance] [ADB] Using aapt from /Users/automobile/Documents/android-sdk-macosx/build-tools/23.0.0-preview/aapt
2016-11-07 15:34:46,909 INFO [jfptest-nexus9 Appium Instance] [ADB] Extracting package and launch activity from manifest
2016-11-07 15:34:46,918 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] badging package: com.mycompany.myproject_goo
2016-11-07 15:34:46,919 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] badging act: com.mycompany.myproject_goo.views.activities.SplashActivity
2016-11-07 15:34:46,919 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidDriver] Parsed package and activity are: com.mycompany.myproject_goo/com.mycompany.myproject_goo.views.activities.SplashActivity
2016-11-07 15:34:47,000 INFO [jfptest-nexus9 Appium Instance] [AndroidDriver] Remote apk path is /data/local/tmp/f40dbc5a5437b509910cc17f5799244f.apk
2016-11-07 15:34:47,001 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:34:47,021 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:34:47,021 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","ls","/data/local/tmp/f40dbc5a5437b509910cc17f5799244f.apk"]
2016-11-07 15:34:47,058 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidDriver] Checking if app is installed
2016-11-07 15:34:47,059 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting install status for com.mycompany.myproject_goo
2016-11-07 15:34:47,059 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:34:47,078 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:34:47,080 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","getprop","ro.build.version.sdk"]
2016-11-07 15:34:47,116 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Device API level: 22
2016-11-07 15:34:47,117 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:34:47,136 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:34:47,137 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","pm","list","packages","-3","com.mycompany.myproject_goo"]
2016-11-07 15:34:47,756 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] App is installed
2016-11-07 15:34:47,756 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidDriver] Extracting strings from apk /opt/jenkins/tmp/myproject-development.apk null /var/folders/02/3_sg564j35lfmzhhg_xjlmxc0000gp/T/com.mycompany.myproject_goo
2016-11-07 15:34:47,756 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Extracting strings for language: default
2016-11-07 15:34:47,756 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Device API level: 22
2016-11-07 15:34:47,757 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:34:47,777 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:34:47,777 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","getprop","persist.sys.language"]
2016-11-07 15:34:47,809 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Current device property 'persist.sys.language':
2016-11-07 15:34:47,810 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:34:47,830 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:34:47,830 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","getprop","ro.product.locale.language"]
2016-11-07 15:34:47,867 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Current device property 'ro.product.locale.language': en
2016-11-07 15:34:48,636 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] No strings.xml for language 'en', getting default strings.xml
2016-11-07 15:34:49,438 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Reading strings from converted strings.json
2016-11-07 15:34:49,439 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","push","/var/folders/02/3_sg564j35lfmzhhg_xjlmxc0000gp/T/com.mycompany.myproject_goo/strings.json","/data/local/tmp"]
2016-11-07 15:34:49,473 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Watching for bootstrap disconnect
2016-11-07 15:34:49,473 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Forwarding system: 4724 to device: 4724
2016-11-07 15:34:49,474 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","forward","tcp:4724","tcp:4724"]
2016-11-07 15:34:49,476 INFO [jfptest-nexus9 Appium Instance] [debug] [UiAutomator] Starting UiAutomator
2016-11-07 15:34:49,476 INFO [jfptest-nexus9 Appium Instance] [debug] [UiAutomator] Moving to state 'starting'
2016-11-07 15:34:49,477 INFO [jfptest-nexus9 Appium Instance] [debug] [UiAutomator] Parsing uiautomator jar
2016-11-07 15:34:49,477 INFO [jfptest-nexus9 Appium Instance] [debug] [UiAutomator] Found jar name: 'AppiumBootstrap.jar'
2016-11-07 15:34:49,477 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","push","/usr/local/lib/node_modules/appium/node_modules/appium-android-driver/node_modules/appium-android-bootstrap/bootstrap/bin/AppiumBootstrap.jar","/data/local/tmp/"]
2016-11-07 15:34:49,506 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Attempting to kill all uiautomator processes
2016-11-07 15:34:49,506 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting all processes with uiautomator
2016-11-07 15:34:49,506 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:34:49,526 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:34:49,526 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","ps","uiautomator"]
2016-11-07 15:34:49,578 INFO [jfptest-nexus9 Appium Instance] [ADB] No uiautomator process found to kill, continuing...
2016-11-07 15:34:49,578 INFO [jfptest-nexus9 Appium Instance] [debug] [UiAutomator] Starting UIAutomator
2016-11-07 15:34:49,579 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Creating ADB subprocess with args: -P, 5037, -s, HT4CCJT02164, shell, uiautomator, runtest, AppiumBootstrap.jar, -c, io.appium.android.bootstrap.Bootstrap, -e, pkg, com.mycompany.myproject_goo, -e, disableAndroidWatchers, false, -e, acceptSslCerts, false
2016-11-07 15:34:50,487 INFO [jfptest-nexus9 Appium Instance] [debug] [UiAutomator] Moving to state 'online'
2016-11-07 15:34:50,489 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] Android bootstrap socket is now connected
2016-11-07 15:34:50,489 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Device API level: 22
2016-11-07 15:34:50,490 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:34:50,492 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] json loading complete.
2016-11-07 15:34:50,497 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Registered crash watchers.
2016-11-07 15:34:50,498 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Client connected
2016-11-07 15:34:50,511 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:34:50,512 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","am","start","-n","com.mycompany.myproject_goo/com.mycompany.myproject_goo.views.activities.SplashActivity","-S","-a","android.intent.action.MAIN","-c","android.intent.category.LAUNCHER","-f","0x10200000"]
2016-11-07 15:34:51,610 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Waiting for pkg: 'com.mycompany.myproject_goo' and activity: 'com.mycompany.myproject_goo.views.activities.SplashActivity' to be focused
2016-11-07 15:34:51,610 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Possible activities, to be checked: com.mycompany.myproject_goo.views.activities.SplashActivity, .views.activities.SplashActivity, .com.mycompany.myproject_goo.views.activities.SplashActivity
2016-11-07 15:34:51,611 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting focused package and activity
2016-11-07 15:34:51,611 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:34:51,631 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:34:51,631 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","dumpsys","window","windows"]
2016-11-07 15:34:51,692 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Found package: 'com.mycompany.myproject_goo' and activity: '.views.activities.SplashActivity'
2016-11-07 15:34:51,693 INFO [jfptest-nexus9 Appium Instance] [Appium] New AndroidDriver session created successfully, session a60a759d-c809-478b-b755-b6821fcd10c2 added to master session list
2016-11-07 15:34:51,693 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Responding to client with driver.createSession() result: {"platform":"LINUX","webStorageEnabled":false,"takesScreenshot":true,"javascriptEnabled":true,"databaseEnabled":false,"networkConnectionEnabled":tr...
2016-11-07 15:34:51,694 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session 200 6836 ms - 740
2016-11-07 15:34:52,204 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/progress_overlay"}
2016-11-07 15:34:52,204 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/progress_overlay","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:34:52,205 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:52,205 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/progress_overlay","context":"","multiple":false}}
2016-11-07 15:34:52,210 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/progress_overlay","context":"","multiple":false}}
2016-11-07 15:34:52,211 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:52,211 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:52,211 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/progress_overlay' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:52,211 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/progress_overlay]
2016-11-07 15:34:52,584 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:52,585 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/progress_overlay' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:52,585 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/progress_overlay]
2016-11-07 15:34:52,952 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:52,952 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:52,954 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 749 ms - 164
2016-11-07 15:34:54,459 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/progress_overlay"}
2016-11-07 15:34:54,459 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/progress_overlay","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:34:54,459 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:54,460 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/progress_overlay","context":"","multiple":false}}
2016-11-07 15:34:54,467 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/progress_overlay","context":"","multiple":false}}
2016-11-07 15:34:54,468 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:54,468 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:54,468 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/progress_overlay' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:54,468 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/progress_overlay]
2016-11-07 15:34:54,486 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:54,489 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/progress_overlay' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:54,489 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/progress_overlay]
2016-11-07 15:34:54,514 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:54,515 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:54,516 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 57 ms - 164
2016-11-07 15:34:54,520 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"xpath","value":"//android.widget.TextView[@text=\"No Internet Connection\"]"}
2016-11-07 15:34:54,520 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["xpath","//android.widget.TextView[@text=\"No Internet Connection\"]","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:34:54,521 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:54,521 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"xpath","selector":"//android.widget.TextView[@text=\"No Internet Connection\"]","context":"","multiple":false}}
2016-11-07 15:34:54,524 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"xpath","selector":"//android.widget.TextView[@text=\"No Internet Connection\"]","context":"","multiple":false}}
2016-11-07 15:34:54,525 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:54,525 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:54,525 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding '//android.widget.TextView[@text="No Internet Connection"]' using 'XPATH' with the contextId: '' multiple: false
2016-11-07 15:34:54,642 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"Could not find an element using supplied strategy. "}
2016-11-07 15:34:54,643 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:54,644 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 124 ms - 164
2016-11-07 15:34:55,147 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:55,148 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:34:55,148 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:55,148 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:55,155 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:55,155 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:55,155 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:55,156 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:55,156 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:55,179 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:55,180 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:55,180 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:55,202 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:55,202 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:55,203 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 56 ms - 164
2016-11-07 15:34:55,207 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:55,207 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:34:55,208 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:55,208 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:55,212 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:55,214 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:55,216 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:55,218 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:55,222 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:55,244 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:55,244 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:55,245 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:55,258 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:55,258 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:55,259 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 52 ms - 164
2016-11-07 15:34:55,763 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:55,763 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:34:55,763 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:55,764 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:55,769 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:55,770 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:55,770 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:55,770 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:55,771 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:55,793 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:55,794 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:55,795 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:55,824 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:55,825 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:55,826 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 63 ms - 164
2016-11-07 15:34:55,830 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:55,830 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:34:55,830 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:55,831 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:55,836 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:55,837 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:55,837 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:55,838 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:55,838 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:55,855 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:55,857 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:55,860 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:55,883 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:55,886 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:55,887 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 57 ms - 164
2016-11-07 15:34:56,391 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:56,391 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:34:56,391 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:56,392 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:56,399 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:56,399 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:56,400 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:56,400 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:56,400 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:56,430 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:56,432 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:56,434 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:56,453 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:56,454 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:56,455 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 64 ms - 164
2016-11-07 15:34:56,459 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:56,459 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:34:56,460 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:56,460 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:56,462 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:56,463 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:56,463 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:56,463 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:56,464 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:56,474 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:56,475 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:56,475 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:56,488 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:56,488 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:56,489 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 30 ms - 164
2016-11-07 15:34:56,994 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:56,994 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:34:56,995 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:56,995 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:56,998 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:56,998 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:56,998 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:56,998 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:56,999 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:57,006 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:57,006 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:57,006 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:57,012 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:57,012 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:57,014 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 19 ms - 164
2016-11-07 15:34:57,017 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:57,017 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:34:57,018 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:57,018 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:57,020 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:57,020 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:57,021 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:57,022 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:57,023 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:57,033 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:57,033 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:57,035 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:57,043 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:57,044 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:57,046 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 28 ms - 164
2016-11-07 15:34:57,549 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:57,549 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:34:57,549 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:57,550 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:57,553 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:57,553 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:57,553 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:57,553 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:57,554 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:57,560 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:57,560 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:57,561 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:57,565 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:57,566 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:57,567 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 18 ms - 164
2016-11-07 15:34:57,570 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:57,571 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:34:57,571 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:57,572 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:57,574 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:57,574 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:57,574 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:57,575 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:57,575 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:57,580 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:57,580 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:57,580 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:57,584 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:57,585 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:57,586 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 15 ms - 164
2016-11-07 15:34:58,090 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:58,090 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:34:58,090 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:58,091 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:58,097 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:58,098 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:58,098 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:58,098 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:58,099 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:58,123 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:58,126 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:58,128 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:58,156 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:58,157 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:58,158 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 68 ms - 164
2016-11-07 15:34:58,161 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:58,162 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:34:58,162 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:58,162 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:58,165 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:58,166 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:58,167 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:58,167 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:58,169 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:58,183 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:58,184 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:58,184 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:58,197 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:58,197 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:58,198 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 37 ms - 164
2016-11-07 15:34:58,703 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:58,703 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:34:58,703 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:58,704 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:58,710 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:58,712 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:58,712 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:58,712 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:58,712 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:58,721 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:58,722 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:58,722 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:58,739 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:58,742 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:58,743 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 40 ms - 164
2016-11-07 15:34:58,746 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:58,746 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:34:58,747 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:58,747 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:58,750 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:58,752 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:58,752 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:58,752 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:58,753 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:58,772 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:58,773 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:58,773 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:58,794 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:58,796 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:58,797 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 51 ms - 164
2016-11-07 15:34:59,302 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:59,302 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:34:59,302 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:59,303 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:59,307 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:59,307 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:59,308 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:59,308 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:59,308 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:59,312 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:59,312 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:59,312 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:34:59,328 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:59,328 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:59,329 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 28 ms - 164
2016-11-07 15:34:59,333 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:34:59,333 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:34:59,333 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:59,334 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:59,336 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:34:59,337 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:59,338 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:59,338 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:59,340 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:59,413 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:34:59,413 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:59,414 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:34:59,417 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:34:59,417 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:34:59,418 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 85 ms - 164
2016-11-07 15:34:59,922 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:34:59,922 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:34:59,922 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:34:59,923 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:59,928 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:34:59,929 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:34:59,929 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:34:59,929 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:34:59,930 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:01,404 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:01,602 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:01,602 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:02,236 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:02,237 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:02,238 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 2316 ms - 164
2016-11-07 15:35:02,241 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:35:02,241 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:02,242 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:02,242 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:35:02,250 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:35:02,253 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:02,253 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:02,253 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:02,254 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:35:02,361 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":0,"value":{"ELEMENT":"1"}}
2016-11-07 15:35:02,362 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:02,362 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Responding to client with driver.findElement() result: {"ELEMENT":"1"}
2016-11-07 15:35:02,363 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 200 122 ms - 87
2016-11-07 15:35:02,875 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/progress_overlay"}
2016-11-07 15:35:02,875 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/progress_overlay","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:02,876 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:02,876 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/progress_overlay","context":"","multiple":false}}
2016-11-07 15:35:02,880 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/progress_overlay","context":"","multiple":false}}
2016-11-07 15:35:02,880 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:02,880 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:02,880 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/progress_overlay' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:02,881 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/progress_overlay]
2016-11-07 15:35:02,896 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:02,897 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/progress_overlay' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:02,898 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/progress_overlay]
2016-11-07 15:35:02,910 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:02,911 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:02,912 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 37 ms - 164
2016-11-07 15:35:04,417 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/progress_overlay"}
2016-11-07 15:35:04,417 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/progress_overlay","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:04,418 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:04,418 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/progress_overlay","context":"","multiple":false}}
2016-11-07 15:35:04,422 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/progress_overlay","context":"","multiple":false}}
2016-11-07 15:35:04,422 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:04,422 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:04,423 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/progress_overlay' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:04,423 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/progress_overlay]
2016-11-07 15:35:04,433 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:04,433 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/progress_overlay' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:04,433 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/progress_overlay]
2016-11-07 15:35:04,442 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:04,443 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:04,444 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 27 ms - 164
2016-11-07 15:35:04,447 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/sideMenu"}
2016-11-07 15:35:04,448 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/sideMenu","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:04,448 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:04,449 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/sideMenu","context":"","multiple":false}}
2016-11-07 15:35:04,454 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/sideMenu","context":"","multiple":false}}
2016-11-07 15:35:04,454 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:04,457 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:04,459 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/sideMenu' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:04,460 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/sideMenu]
2016-11-07 15:35:04,533 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:04,534 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/sideMenu' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:04,536 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/sideMenu]
2016-11-07 15:35:04,581 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:04,583 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:04,583 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 135 ms - 164
2016-11-07 15:35:04,586 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/sideMenuButton"}
2016-11-07 15:35:04,587 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/sideMenuButton","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:04,587 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:04,587 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/sideMenuButton","context":"","multiple":false}}
2016-11-07 15:35:04,593 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/sideMenuButton","context":"","multiple":false}}
2016-11-07 15:35:04,593 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:04,593 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:04,594 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/sideMenuButton' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:04,594 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/sideMenuButton]
2016-11-07 15:35:04,626 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:04,628 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/sideMenuButton' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:04,629 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/sideMenuButton]
2016-11-07 15:35:04,670 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:04,670 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:04,671 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 85 ms - 164
2016-11-07 15:35:05,176 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/progress_overlay"}
2016-11-07 15:35:05,176 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/progress_overlay","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:05,176 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:05,177 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/progress_overlay","context":"","multiple":false}}
2016-11-07 15:35:05,180 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/progress_overlay","context":"","multiple":false}}
2016-11-07 15:35:05,180 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:05,181 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:05,181 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/progress_overlay' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:05,181 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/progress_overlay]
2016-11-07 15:35:05,202 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:05,202 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/progress_overlay' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:05,202 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/progress_overlay]
2016-11-07 15:35:05,234 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:05,235 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:05,236 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 60 ms - 164
2016-11-07 15:35:06,741 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/progress_overlay"}
2016-11-07 15:35:06,741 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/progress_overlay","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:06,741 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:06,742 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/progress_overlay","context":"","multiple":false}}
2016-11-07 15:35:06,745 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/progress_overlay","context":"","multiple":false}}
2016-11-07 15:35:06,746 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:06,746 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:06,746 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/progress_overlay' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:06,746 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/progress_overlay]
2016-11-07 15:35:06,761 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:06,762 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/progress_overlay' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:06,763 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/progress_overlay]
2016-11-07 15:35:06,773 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:06,773 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:06,774 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 33 ms - 164
2016-11-07 15:35:06,777 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/appium/device/hide_keyboard {}
2016-11-07 15:35:06,778 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.hideKeyboard() with args: [null,null,null,null,"a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:06,779 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:35:06,799 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:35:06,800 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","dumpsys","input_method"]
2016-11-07 15:35:06,986 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/appium/device/hide_keyboard 500 208 ms - 218
2016-11-07 15:35:06,990 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:35:06,990 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:06,991 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:06,991 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:35:06,994 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:35:06,995 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:06,997 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:06,997 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:06,997 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:35:07,001 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":0,"value":{"ELEMENT":"2"}}
2016-11-07 15:35:07,001 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:07,002 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Responding to client with driver.findElement() result: {"ELEMENT":"2"}
2016-11-07 15:35:07,003 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 200 13 ms - 87
2016-11-07 15:35:07,507 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/welcome_signin"}
2016-11-07 15:35:07,507 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/welcome_signin","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:07,507 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:07,508 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:35:07,510 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/welcome_signin","context":"","multiple":false}}
2016-11-07 15:35:07,511 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:07,511 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:07,511 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/welcome_signin' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:07,511 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/welcome_signin]
2016-11-07 15:35:07,518 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":0,"value":{"ELEMENT":"3"}}
2016-11-07 15:35:07,518 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:07,519 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Responding to client with driver.findElement() result: {"ELEMENT":"3"}
2016-11-07 15:35:07,520 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 200 13 ms - 87
2016-11-07 15:35:07,806 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element/3/click {"id":"3"}
2016-11-07 15:35:07,807 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.click() with args: ["3","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:07,808 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"element:click","params":{"elementId":"3"}}
2016-11-07 15:35:07,811 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"3"}}
2016-11-07 15:35:07,811 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:07,811 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: click
2016-11-07 15:35:08,051 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":0,"value":true}
2016-11-07 15:35:08,051 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:08,051 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Responding to client with driver.click() result: true
2016-11-07 15:35:08,052 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element/3/click 200 245 ms - 76
2016-11-07 15:35:08,569 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"xpath","value":"(//android.widget.EditText)[1]"}
2016-11-07 15:35:08,569 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["xpath","(//android.widget.EditText)[1]","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:08,570 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:08,570 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"xpath","selector":"(//android.widget.EditText)[1]","context":"","multiple":false}}
2016-11-07 15:35:08,576 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"xpath","selector":"(//android.widget.EditText)[1]","context":"","multiple":false}}
2016-11-07 15:35:08,576 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:08,576 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:08,577 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding '(//android.widget.EditText)[1]' using 'XPATH' with the contextId: '' multiple: false
2016-11-07 15:35:08,638 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[CLASS=android.widget.EditText, INSTANCE=0]
2016-11-07 15:35:08,671 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":0,"value":{"ELEMENT":"4"}}
2016-11-07 15:35:08,671 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:08,672 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Responding to client with driver.findElement() result: {"ELEMENT":"4"}
2016-11-07 15:35:08,673 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 200 103 ms - 87
2016-11-07 15:35:08,677 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element/4/clear {"id":"4"}
2016-11-07 15:35:08,677 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.clear() with args: ["4","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:08,678 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"element:clear","params":{"elementId":"4"}}
2016-11-07 15:35:08,680 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"element:clear","params":{"elementId":"4"}}
2016-11-07 15:35:08,681 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:08,681 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: clear
2016-11-07 15:35:08,681 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Attempting to clear using UiObject.clearText().
2016-11-07 15:35:11,191 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Text remains after clearing, but it appears to be hint text.
2016-11-07 15:35:11,192 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":0,"value":true}
2016-11-07 15:35:11,192 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:11,192 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Responding to client with driver.clear() result: true
2016-11-07 15:35:11,193 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element/4/clear 200 2516 ms - 76
2016-11-07 15:35:11,197 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element/4/value {"id":"4","value":["testemail@mydomain.com"]}
2016-11-07 15:35:11,197 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.setValue() with args: [["testemail@mydomain.com"],"4","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:11,199 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"element:setText","params":{"elementId":"4","text":"testemail@mydomain.com","replace":false}}
2016-11-07 15:35:11,201 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"element:setText","params":{"elementId":"4","text":"testemail@mydomain.com","replace":false}}
2016-11-07 15:35:11,201 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:11,202 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: setText
2016-11-07 15:35:11,202 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using element passed in: 4
2016-11-07 15:35:11,225 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Attempting to clear using UiObject.clearText().
2016-11-07 15:35:13,586 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Text remains after clearing, but it appears to be hint text.
2016-11-07 15:35:13,593 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Text not cleared. Assuming remainder is hint text.
2016-11-07 15:35:13,593 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Sending plain text to element: testemail@mydomain.com
2016-11-07 15:35:16,441 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":0,"value":true}
2016-11-07 15:35:16,442 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:16,442 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Responding to client with driver.setValue() result: true
2016-11-07 15:35:16,443 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element/4/value 200 5246 ms - 76
2016-11-07 15:35:16,446 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> GET /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element/4/attribute/text {}
2016-11-07 15:35:16,447 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.getAttribute() with args: ["text","4","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:16,448 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"element:getAttribute","params":{"attribute":"text","elementId":"4"}}
2016-11-07 15:35:16,452 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"element:getAttribute","params":{"attribute":"text","elementId":"4"}}
2016-11-07 15:35:16,453 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:16,453 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: getAttribute
2016-11-07 15:35:17,005 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":0,"value":"testemail@mydomain.com"}
2016-11-07 15:35:17,005 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:17,006 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Responding to client with driver.getAttribute() result: "testemail@mydomain.com"
2016-11-07 15:35:17,007 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- GET /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element/4/attribute/text 200 560 ms - 99
2016-11-07 15:35:17,511 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"xpath","value":"(//android.widget.EditText)[2]"}
2016-11-07 15:35:17,511 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["xpath","(//android.widget.EditText)[2]","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:17,511 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:17,512 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"xpath","selector":"(//android.widget.EditText)[2]","context":"","multiple":false}}
2016-11-07 15:35:17,516 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"xpath","selector":"(//android.widget.EditText)[2]","context":"","multiple":false}}
2016-11-07 15:35:17,516 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:17,517 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:17,517 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding '(//android.widget.EditText)[2]' using 'XPATH' with the contextId: '' multiple: false
2016-11-07 15:35:17,581 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[CLASS=android.widget.EditText, INSTANCE=1]
2016-11-07 15:35:17,611 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":0,"value":{"ELEMENT":"5"}}
2016-11-07 15:35:17,614 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:17,614 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Responding to client with driver.findElement() result: {"ELEMENT":"5"}
2016-11-07 15:35:17,615 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 200 104 ms - 87
2016-11-07 15:35:17,618 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element/5/clear {"id":"5"}
2016-11-07 15:35:17,619 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.clear() with args: ["5","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:17,619 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"element:clear","params":{"elementId":"5"}}
2016-11-07 15:35:17,621 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"element:clear","params":{"elementId":"5"}}
2016-11-07 15:35:17,621 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:17,622 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: clear
2016-11-07 15:35:17,622 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Attempting to clear using UiObject.clearText().
2016-11-07 15:35:20,228 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":0,"value":true}
2016-11-07 15:35:20,228 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:20,229 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Responding to client with driver.clear() result: true
2016-11-07 15:35:20,229 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element/5/clear 200 2611 ms - 76
2016-11-07 15:35:20,233 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element/5/value {"id":"5","value":["db5653fe"]}
2016-11-07 15:35:20,233 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.setValue() with args: [["db5653fe"],"5","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:20,234 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"element:setText","params":{"elementId":"5","text":"db5653fe","replace":false}}
2016-11-07 15:35:20,236 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"element:setText","params":{"elementId":"5","text":"db5653fe","replace":false}}
2016-11-07 15:35:20,236 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:20,237 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: setText
2016-11-07 15:35:20,237 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using element passed in: 5
2016-11-07 15:35:20,250 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Attempting to clear using UiObject.clearText().
2016-11-07 15:35:22,561 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Sending plain text to element: db5653fe
2016-11-07 15:35:25,017 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":0,"value":true}
2016-11-07 15:35:25,018 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:25,018 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Responding to client with driver.setValue() result: true
2016-11-07 15:35:25,018 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element/5/value 200 4783 ms - 76
2016-11-07 15:35:25,521 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/progress_overlay"}
2016-11-07 15:35:25,521 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/progress_overlay","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:25,521 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:25,522 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/progress_overlay","context":"","multiple":false}}
2016-11-07 15:35:25,525 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/progress_overlay","context":"","multiple":false}}
2016-11-07 15:35:25,525 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:25,525 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:25,525 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/progress_overlay' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:25,526 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/progress_overlay]
2016-11-07 15:35:25,586 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:25,586 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/progress_overlay' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:25,587 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/progress_overlay]
2016-11-07 15:35:25,597 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:25,597 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:25,599 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 78 ms - 164
2016-11-07 15:35:27,104 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/progress_overlay"}
2016-11-07 15:35:27,104 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/progress_overlay","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:27,104 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:27,105 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/progress_overlay","context":"","multiple":false}}
2016-11-07 15:35:27,107 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/progress_overlay","context":"","multiple":false}}
2016-11-07 15:35:27,108 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:27,108 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:27,108 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/progress_overlay' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:27,108 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/progress_overlay]
2016-11-07 15:35:27,118 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:27,119 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/progress_overlay' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:27,119 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/progress_overlay]
2016-11-07 15:35:27,131 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:27,131 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:27,132 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 28 ms - 164
2016-11-07 15:35:27,136 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/appium/device/hide_keyboard {}
2016-11-07 15:35:27,137 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.hideKeyboard() with args: [null,null,null,null,"a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:27,137 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Getting connected devices...
2016-11-07 15:35:27,158 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] 1 device(s) connected
2016-11-07 15:35:27,159 INFO [jfptest-nexus9 Appium Instance] [debug] [ADB] Running /Users/automobile/Documents/android-sdk-macosx/platform-tools/adb with args: ["-P",5037,"-s","HT4CCJT02164","shell","dumpsys","input_method"]
2016-11-07 15:35:27,215 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"pressBack","params":{}}
2016-11-07 15:35:27,219 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"pressBack","params":{}}
2016-11-07 15:35:27,219 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:27,219 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: pressBack
2016-11-07 15:35:27,291 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":0,"value":true}
2016-11-07 15:35:27,292 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:27,292 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Responding to client with driver.hideKeyboard() result: true
2016-11-07 15:35:27,293 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/appium/device/hide_keyboard 200 156 ms - 76
2016-11-07 15:35:27,296 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/signinButton"}
2016-11-07 15:35:27,297 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/signinButton","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:27,297 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:27,298 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/signinButton","context":"","multiple":false}}
2016-11-07 15:35:27,301 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/signinButton","context":"","multiple":false}}
2016-11-07 15:35:27,302 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:27,302 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:27,303 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/signinButton' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:27,304 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/signinButton]
2016-11-07 15:35:27,902 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":0,"value":{"ELEMENT":"6"}}
2016-11-07 15:35:27,903 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:27,903 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Responding to client with driver.findElement() result: {"ELEMENT":"6"}
2016-11-07 15:35:27,904 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 200 607 ms - 87
2016-11-07 15:35:28,408 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/signinButton"}
2016-11-07 15:35:28,408 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/signinButton","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:28,409 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:28,409 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/signinButton","context":"","multiple":false}}
2016-11-07 15:35:28,412 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/signinButton","context":"","multiple":false}}
2016-11-07 15:35:28,412 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:28,413 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:28,413 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/signinButton' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:28,413 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/signinButton]
2016-11-07 15:35:28,423 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":0,"value":{"ELEMENT":"7"}}
2016-11-07 15:35:28,424 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:28,424 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Responding to client with driver.findElement() result: {"ELEMENT":"7"}
2016-11-07 15:35:28,425 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 200 17 ms - 87
2016-11-07 15:35:28,428 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element/7/click {"id":"7"}
2016-11-07 15:35:28,429 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.click() with args: ["7","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:28,429 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"element:click","params":{"elementId":"7"}}
2016-11-07 15:35:28,431 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"7"}}
2016-11-07 15:35:28,431 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:28,432 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: click
2016-11-07 15:35:28,599 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":0,"value":true}
2016-11-07 15:35:28,601 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:28,601 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Responding to client with driver.click() result: true
2016-11-07 15:35:28,602 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element/7/click 200 174 ms - 76
2016-11-07 15:35:29,107 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:29,107 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:29,107 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:29,108 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:29,110 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:29,111 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:29,111 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:29,111 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:29,111 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:29,228 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:29,229 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:29,229 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:29,360 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:29,361 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:29,362 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 255 ms - 164
2016-11-07 15:35:29,867 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:29,867 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:29,867 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:29,868 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:29,871 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:29,872 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:29,872 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:29,872 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:29,874 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:30,181 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:30,182 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:30,182 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:30,215 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:30,216 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:30,217 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 350 ms - 164
2016-11-07 15:35:30,721 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:30,721 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:30,721 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:30,722 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:30,729 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:30,730 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:30,730 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:30,730 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:30,730 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:30,916 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:30,917 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:30,917 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:30,949 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:30,950 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:30,950 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 230 ms - 164
2016-11-07 15:35:31,455 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:31,455 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:31,455 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:31,456 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:31,459 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:31,459 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:31,460 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:31,460 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:31,461 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:31,834 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:31,834 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:31,834 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:31,868 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:31,869 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:31,870 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 415 ms - 164
2016-11-07 15:35:32,373 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:32,374 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:32,374 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:32,375 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:32,380 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:32,381 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:32,381 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:32,381 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:32,381 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:32,737 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:32,738 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:32,738 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:32,770 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:32,772 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:32,772 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 398 ms - 164
2016-11-07 15:35:33,276 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:33,276 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:33,277 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:33,278 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:33,281 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:33,281 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:33,282 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:33,282 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:33,282 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:33,305 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:33,305 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:33,305 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:33,387 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:33,387 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:33,388 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 112 ms - 164
2016-11-07 15:35:33,893 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:33,893 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:33,893 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:33,894 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:33,897 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:33,897 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:33,897 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:33,897 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:33,898 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:34,040 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:34,040 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:34,040 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:34,074 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:34,074 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:34,075 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 182 ms - 164
2016-11-07 15:35:34,580 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:34,580 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:34,581 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:34,581 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:34,585 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:34,585 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:34,586 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:34,586 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:34,586 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:34,708 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:34,708 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:34,709 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:34,819 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:34,820 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:34,821 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 241 ms - 164
2016-11-07 15:35:35,325 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:35,327 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:35,327 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:35,327 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:35,330 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:35,331 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:35,331 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:35,332 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:35,332 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:35,365 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:35,365 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:35,366 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:35,397 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:35,398 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:35,399 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 74 ms - 164
2016-11-07 15:35:35,903 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:35,903 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:35,904 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:35,904 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:35,919 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:35,920 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:35,920 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:35,920 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:35,921 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:36,460 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:36,461 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:36,461 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:36,483 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:36,484 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:36,485 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 581 ms - 164
2016-11-07 15:35:36,989 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:36,989 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:36,990 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:36,990 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:36,993 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:36,995 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:36,995 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:36,995 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:36,996 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:37,534 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:37,535 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:37,535 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:37,719 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:37,719 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:37,720 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 731 ms - 164
2016-11-07 15:35:38,224 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:38,224 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:38,225 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:38,226 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:38,228 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:38,229 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:38,229 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:38,229 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:38,230 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:38,453 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:38,453 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:38,453 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:38,537 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:38,537 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:38,538 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 314 ms - 164
2016-11-07 15:35:39,042 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:39,042 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:39,043 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:39,043 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:39,046 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:39,046 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:39,047 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:39,047 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:39,047 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:39,148 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:39,148 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:39,148 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:39,165 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:39,166 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:39,167 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 125 ms - 164
2016-11-07 15:35:39,671 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:39,671 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:39,672 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:39,672 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:39,675 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:39,676 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:39,676 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:39,676 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:39,676 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:39,792 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:39,793 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:39,793 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:40,025 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:40,026 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:40,027 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 356 ms - 164
2016-11-07 15:35:40,531 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:40,531 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:40,531 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:40,532 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:40,536 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:40,536 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:40,537 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:40,537 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:40,537 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:40,699 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:40,699 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:40,700 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:40,776 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:40,776 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:40,777 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 246 ms - 164
2016-11-07 15:35:41,282 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:41,283 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:41,283 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:41,284 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:41,287 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:41,287 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:41,287 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:41,288 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:41,288 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:41,845 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:41,846 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:41,846 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:41,880 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:41,880 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:41,881 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 599 ms - 164
2016-11-07 15:35:42,385 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:42,385 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:42,385 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:42,386 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:42,389 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:42,389 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:42,390 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:42,390 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:42,390 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:42,515 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:42,516 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:42,516 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:42,603 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:42,604 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:42,605 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 220 ms - 164
2016-11-07 15:35:43,109 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:43,109 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:43,110 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:43,110 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:43,115 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:43,115 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:43,115 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:43,116 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:43,116 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:43,149 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:43,149 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:43,150 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:43,652 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:43,653 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:43,654 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 544 ms - 164
2016-11-07 15:35:44,160 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:44,161 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:44,161 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:44,162 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:44,168 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:44,168 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:44,168 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:44,168 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:44,169 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:44,538 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:44,539 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:44,539 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:44,572 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:44,573 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:44,574 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 413 ms - 164
2016-11-07 15:35:45,078 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:45,079 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:45,079 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:45,079 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:45,083 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:45,083 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:45,083 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:45,084 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:45,084 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:46,225 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:46,225 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:46,225 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:46,323 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:46,324 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:46,325 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 1247 ms - 164
2016-11-07 15:35:46,829 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:46,829 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:46,830 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:46,831 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:46,833 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:46,833 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:46,834 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:46,834 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:46,834 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:46,859 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:46,860 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:46,860 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:47,098 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:47,099 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:47,099 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 270 ms - 164
2016-11-07 15:35:47,604 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:47,604 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:47,604 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:47,605 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:47,608 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:47,608 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:47,608 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:47,608 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:47,609 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:47,865 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:47,866 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:47,867 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:47,903 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:47,903 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:47,904 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 300 ms - 164
2016-11-07 15:35:48,409 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:48,409 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:48,409 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:48,410 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:48,414 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:48,414 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:48,414 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:48,415 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:48,415 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:48,469 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:48,470 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:48,470 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:48,496 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:48,497 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:48,498 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 89 ms - 164
2016-11-07 15:35:49,002 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:49,005 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:49,006 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:49,006 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:49,014 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:49,014 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:49,014 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:49,015 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:49,015 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:49,400 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:49,401 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:49,401 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:49,423 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:49,423 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:49,424 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 422 ms - 164
2016-11-07 15:35:49,929 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:49,929 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:49,930 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:49,930 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:49,933 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:49,933 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:49,934 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:49,934 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:49,934 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:50,138 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:50,140 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:50,140 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:50,172 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:50,175 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:50,176 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 247 ms - 164
2016-11-07 15:35:50,681 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:50,681 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:50,681 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:50,682 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:50,684 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:50,685 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:50,685 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:50,685 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:50,686 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:50,828 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:50,829 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:50,829 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:50,969 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:50,971 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:50,972 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 290 ms - 164
2016-11-07 15:35:51,475 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:51,475 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:51,476 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:51,476 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:51,479 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:51,479 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:51,479 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:51,480 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:51,480 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:51,551 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:51,551 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:51,551 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:51,584 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:51,585 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:51,596 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 122 ms - 164
2016-11-07 15:35:52,101 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:52,101 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:52,101 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:52,102 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:52,105 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:52,105 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:52,105 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:52,106 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:52,106 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:52,139 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:52,140 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:52,140 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:52,292 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:52,292 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:52,293 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 192 ms - 164
2016-11-07 15:35:52,798 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:52,798 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:52,799 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:52,799 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:52,803 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:52,804 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:52,804 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:52,804 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:52,804 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:52,961 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:52,962 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:52,962 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:52,991 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:52,991 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:52,993 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 195 ms - 164
2016-11-07 15:35:53,497 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:53,497 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:53,498 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:53,498 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:53,501 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:53,502 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:53,502 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:53,502 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:53,502 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:53,724 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:53,725 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:53,725 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:53,757 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:53,758 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:53,759 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 262 ms - 164
2016-11-07 15:35:54,263 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:54,263 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:54,263 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:54,264 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:54,267 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:54,267 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:54,268 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:54,268 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:54,268 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:54,294 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:54,295 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:54,295 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:54,327 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:54,328 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:54,329 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 66 ms - 164
2016-11-07 15:35:54,833 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:54,833 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:54,833 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:54,834 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:54,838 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:54,839 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:54,839 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:54,840 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:54,840 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:54,936 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:54,937 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:54,937 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:54,966 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:54,967 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:54,968 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 135 ms - 164
2016-11-07 15:35:55,472 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:55,472 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:55,473 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:55,474 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:55,477 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:55,477 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:55,478 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:55,478 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:55,478 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:55,496 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:55,496 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:55,496 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:55,532 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:55,532 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:55,534 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 62 ms - 164
2016-11-07 15:35:56,038 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:56,038 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:56,038 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:56,039 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:56,042 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:56,043 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:56,043 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:56,043 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:56,044 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:56,065 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:56,066 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:56,066 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:56,247 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:56,248 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:56,249 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 211 ms - 164
2016-11-07 15:35:56,754 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:56,755 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:56,755 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:56,755 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:56,758 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:56,758 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:56,759 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:56,759 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:56,759 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:56,882 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:56,882 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:56,882 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:57,043 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:57,044 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:57,045 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 292 ms - 164
2016-11-07 15:35:57,549 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:57,550 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:57,550 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:57,551 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:57,553 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:57,553 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:57,554 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:57,554 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:57,554 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:57,658 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:57,659 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:57,659 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:57,670 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:57,671 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:57,671 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 122 ms - 164
2016-11-07 15:35:58,176 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:58,176 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:58,177 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:58,177 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:58,181 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:58,182 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:58,182 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:58,182 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:58,182 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:58,208 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:58,208 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:58,208 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:58,372 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:58,372 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:58,373 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 197 ms - 164
2016-11-07 15:35:58,878 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:58,878 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:58,879 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:58,879 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:58,883 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:58,884 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:58,884 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:58,884 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:58,885 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:58,925 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:58,925 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:58,925 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:59,071 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:59,072 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:59,073 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 195 ms - 164
2016-11-07 15:35:59,577 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:35:59,577 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:35:59,578 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:35:59,578 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:59,582 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:35:59,582 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:35:59,583 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:35:59,583 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:59,583 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:59,605 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:35:59,605 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:35:59,606 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:35:59,638 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:35:59,638 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:35:59,639 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 62 ms - 164
2016-11-07 15:36:00,144 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:00,144 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:00,146 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:00,147 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:00,149 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:00,149 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:00,149 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:00,150 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:00,150 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:00,191 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:00,191 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:00,191 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:00,358 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:00,358 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:00,361 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 217 ms - 164
2016-11-07 15:36:00,866 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:00,866 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:00,867 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:00,867 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:00,870 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:00,871 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:00,871 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:00,871 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:00,872 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:01,046 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:01,046 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:01,046 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:01,312 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:01,313 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:01,313 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 448 ms - 164
2016-11-07 15:36:01,818 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:01,818 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:01,819 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:01,819 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:01,823 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:01,823 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:01,824 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:01,824 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:01,824 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:01,855 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:01,855 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:01,855 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:01,866 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:01,866 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:01,867 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 49 ms - 164
2016-11-07 15:36:02,371 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:02,371 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:02,372 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:02,372 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:02,375 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:02,376 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:02,376 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:02,376 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:02,377 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:02,543 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:02,544 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:02,544 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:02,565 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:02,565 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:02,566 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 195 ms - 164
2016-11-07 15:36:03,070 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:03,070 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:03,071 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:03,071 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:03,074 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:03,075 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:03,075 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:03,075 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:03,076 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:03,100 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:03,100 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:03,101 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:03,183 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:03,184 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:03,185 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 115 ms - 164
2016-11-07 15:36:03,690 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:03,691 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:03,691 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:03,691 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:03,693 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:03,693 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:03,694 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:03,694 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:03,694 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:03,786 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:03,786 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:03,787 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:03,820 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:03,821 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:03,822 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 133 ms - 164
2016-11-07 15:36:04,326 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:04,326 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:04,327 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:04,327 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:04,329 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:04,330 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:04,330 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:04,330 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:04,331 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:05,040 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:05,041 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:05,041 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:05,082 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:05,082 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:05,083 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 757 ms - 164
2016-11-07 15:36:05,588 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:05,588 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:05,589 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:05,589 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:05,593 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:05,593 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:05,595 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:05,595 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:05,595 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:05,645 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:05,649 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:05,650 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:05,774 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:05,774 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:05,775 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 187 ms - 164
2016-11-07 15:36:06,280 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:06,281 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:06,281 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:06,282 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:06,285 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:06,285 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:06,286 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:06,286 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:06,286 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:06,306 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:06,307 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:06,307 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:06,339 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:06,339 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:06,340 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 59 ms - 164
2016-11-07 15:36:06,844 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:06,844 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:06,845 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:06,845 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:06,849 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:06,851 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:06,852 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:06,852 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:06,852 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:06,914 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:06,915 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:06,916 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:06,945 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:06,946 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:06,947 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 102 ms - 164
2016-11-07 15:36:07,451 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:07,451 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:07,452 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:07,452 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:07,455 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:07,455 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:07,455 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:07,456 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:07,456 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:07,852 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:07,852 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:07,852 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:07,875 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:07,877 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:07,878 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 427 ms - 164
2016-11-07 15:36:08,382 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:08,382 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:08,383 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:08,383 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:08,385 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:08,386 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:08,386 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:08,386 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:08,387 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:08,431 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:08,431 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:08,432 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:08,441 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:08,441 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:08,442 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 60 ms - 164
2016-11-07 15:36:08,947 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:08,947 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:08,948 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:08,948 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:08,949 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:08,949 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:08,950 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:08,950 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:08,950 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:08,955 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:08,956 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:08,956 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:08,960 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:08,961 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:08,962 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 16 ms - 164
2016-11-07 15:36:09,466 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:09,466 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:09,467 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:09,467 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:09,470 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:09,471 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:09,471 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:09,471 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:09,472 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:09,476 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:09,476 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:09,477 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:09,482 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:09,482 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:09,483 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 17 ms - 164
2016-11-07 15:36:09,988 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:09,988 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:09,989 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:09,990 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:09,991 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:09,991 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:09,992 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:09,992 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:09,992 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:09,997 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:09,997 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:09,998 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:10,001 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:10,002 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:10,003 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 15 ms - 164
2016-11-07 15:36:10,507 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:10,507 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:10,508 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:10,508 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:10,510 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:10,511 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:10,511 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:10,511 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:10,512 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:10,538 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:10,539 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:10,539 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:10,582 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:10,583 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:10,584 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 77 ms - 164
2016-11-07 15:36:11,088 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:11,088 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:11,089 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:11,089 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:11,091 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:11,092 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:11,093 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:11,094 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:11,094 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:11,098 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:11,099 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:11,099 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:11,110 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:11,110 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:11,111 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 23 ms - 164
2016-11-07 15:36:11,615 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:11,615 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:11,616 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:11,616 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:11,619 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:11,622 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:11,622 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:11,623 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:11,623 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:11,628 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:11,629 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:11,629 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:11,639 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:11,639 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:11,640 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 25 ms - 164
2016-11-07 15:36:12,143 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:12,144 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:12,145 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:12,145 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:12,148 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:12,148 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:12,148 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:12,149 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:12,150 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:12,158 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:12,158 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:12,159 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:12,167 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:12,168 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:12,169 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 25 ms - 164
2016-11-07 15:36:12,673 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:12,673 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:12,674 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:12,674 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:12,677 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:12,677 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:12,678 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:12,678 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:12,678 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:12,724 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:12,724 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:12,725 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:12,775 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:12,775 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:12,776 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 103 ms - 164
2016-11-07 15:36:13,280 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:13,280 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:13,281 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:13,281 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:13,283 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:13,284 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:13,284 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:13,284 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:13,285 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:13,307 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:13,308 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:13,308 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:13,311 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:13,311 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:13,312 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 32 ms - 164
2016-11-07 15:36:13,817 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:13,817 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:13,818 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:13,818 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:13,820 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:13,821 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:13,821 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:13,821 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:13,822 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:13,851 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:13,851 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:13,852 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:13,878 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:13,878 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:13,879 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 62 ms - 164
2016-11-07 15:36:14,383 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:14,383 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:14,384 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:14,384 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:14,387 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:14,387 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:14,388 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:14,388 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:14,388 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:14,396 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:14,399 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:14,399 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:14,443 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:14,444 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:14,445 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 62 ms - 164
2016-11-07 15:36:14,950 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:14,950 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:14,951 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:14,951 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:14,953 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:14,954 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:14,954 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:14,954 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:14,955 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:14,999 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:15,001 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:15,002 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:15,017 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:15,017 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:15,018 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 69 ms - 164
2016-11-07 15:36:15,523 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:15,523 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:15,524 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:15,524 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:15,527 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:15,527 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:15,527 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:15,528 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:15,528 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:15,544 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:15,546 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:15,546 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:15,548 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:15,548 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:15,549 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 26 ms - 164
2016-11-07 15:36:16,053 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:16,053 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:16,054 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:16,054 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:16,056 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:16,057 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:16,057 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:16,057 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:16,058 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:16,095 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:16,096 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:16,096 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:16,104 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:16,105 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:16,105 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 52 ms - 164
2016-11-07 15:36:16,610 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:16,610 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:16,611 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:16,611 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:16,613 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:16,614 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:16,614 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:16,614 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:16,615 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:16,619 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:16,621 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:16,621 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:16,624 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:16,625 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:16,626 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 16 ms - 164
2016-11-07 15:36:17,130 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:17,130 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:17,131 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:17,131 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:17,133 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:17,134 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:17,134 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:17,134 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:17,135 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:17,198 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:17,199 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:17,199 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:17,215 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:17,215 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:17,222 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 86 ms - 164
2016-11-07 15:36:17,726 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:17,726 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:17,727 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:17,727 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:17,730 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:17,730 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:17,730 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:17,731 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:17,731 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:17,761 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:17,762 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:17,762 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:17,806 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:17,807 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:17,808 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 82 ms - 164
2016-11-07 15:36:18,312 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:18,312 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:18,313 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:18,313 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:18,315 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:18,316 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:18,316 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:18,317 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:18,317 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:18,349 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:18,349 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:18,350 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:18,363 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:18,364 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:18,365 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 53 ms - 164
2016-11-07 15:36:18,869 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:18,869 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:18,870 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:18,870 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:18,873 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:18,873 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:18,873 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:18,875 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:18,875 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:18,881 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
2016-11-07 15:36:18,882 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding 'com.mycompany.myproject_goo:id/profileselect_list' using 'ID' with the contextId: '' multiple: false
2016-11-07 15:36:18,882 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.mycompany.myproject_goo:id/profileselect_list]
2016-11-07 15:36:18,890 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {"status":7,"value":"No element found"}
2016-11-07 15:36:18,890 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Received command result from bootstrap
2016-11-07 15:36:18,892 INFO [jfptest-nexus9 Appium Instance] [HTTP] <-- POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element 500 22 ms - 164
2016-11-07 15:36:19,396 INFO [jfptest-nexus9 Appium Instance] [HTTP] --> POST /wd/hub/session/a60a759d-c809-478b-b755-b6821fcd10c2/element {"using":"id","value":"com.mycompany.myproject_goo:id/profileselect_list"}
2016-11-07 15:36:19,396 INFO [jfptest-nexus9 Appium Instance] [MJSONWP] Calling AppiumDriver.findElement() with args: ["id","com.mycompany.myproject_goo:id/profileselect_list","a60a759d-c809-478b-b755-b6821fcd10c2"]
2016-11-07 15:36:19,397 INFO [jfptest-nexus9 Appium Instance] [debug] [BaseDriver] Waiting up to 0 ms for condition
2016-11-07 15:36:19,397 INFO [jfptest-nexus9 Appium Instance] [debug] [AndroidBootstrap] Sending command to android: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:19,400 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.mycompany.myproject_goo:id/profileselect_list","context":"","multiple":false}}
2016-11-07 15:36:19,401 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
2016-11-07 15:36:19,401 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
2016-11-07 15:36:19,401 INFO [jfptest-nexus9 Appium Instance] [AndroidBootstrap] [BOOTSTRAP LOG] [deb
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment