Not able to locate UI elements in CI

Problem :
After integrating appium tests in CI (after encountering plenty of issues) , i was able to run a sample login test but the problem is that the test fails bcos its not able to find the password field to enter the password (the test runs absolutely fine locally). I tried putting some sleep() between username & password field commands and also tried to get the pagesource (driver.getPageSource()) and it seems that the UI element is pretty much present in the XML but is not able to locate the element.
Here is the test what its trying to do :
a. click on login button (works)
b. enter username field (works)
c. doesn’t find password field

Environment :
Appium version (or git revision) that exhibits the issue: 1.7.2-beta2
Last Appium version that did not exhibit the issue (if applicable):
Desktop OS/version used to run Appium: MacOS Sierra
Node.js version (unless using Appium.app|exe):
Mobile platform/version under test: Android 5.1
Real device or emulator/simulator: Simulator
Appium CLI or Appium.app|exe: CLI

Details :
After some trial & error :
It seems it is able to interact with button elements but when it comes to text element (like password field), it doesn’t seem to identify (except the username , maybe bcos the cursor is present in the username by default).
also i don’t think the android sim keyboard is hiding the view of the password as the bottom login button which validate the login credentials is also displayed (tried isDisplayed()).

Code:
Sample test code to test :

@Test
public void validLogout() throws Exception {
LoginScreen loginScreen = new LoginScreen(driver);
loginScreen.loginButton.click();
loginScreen.loginWithMobileOrEmail.click();
loginScreen.username.sendKeys("[email protected]");
loginScreen.password.sendKeys(“Aa1234”); // Doesn’t locate the respective element
}

UI locator for the password field is : com.sniip.androidapp.local2:id/et_log_in_pw

Locator definition :

public final static String ENV_PACKAGE = “com.sniip.androidapp”;

@AndroidFindAll({
@AndroidBy(id = ENV_PACKAGE + “.local2:id/tv_log_in”),
@AndroidBy(id = ENV_PACKAGE + “.uat2:id/tv_log_in”)
})
public MobileElement loginButton;

@AndroidFindAll({
@AndroidBy(id = ENV_PACKAGE + “.local2:id/et_email_or_mobile_number”),
@AndroidBy(id = ENV_PACKAGE + “.uat2:id/et_email_or_mobile_number”)
})
public MobileElement username;

@AndroidFindAll({
@AndroidBy(id = ENV_PACKAGE + “.local2:id/et_log_in_pw”),
@AndroidBy(id = ENV_PACKAGE + “.uat2:id/et_log_in_pw”)
})
public MobileElement password;

Appium server log :
[HTTP] --> POST /wd/hub/session {“desiredCapabilities”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“capabilities”:{“desiredCapabilities”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“firstMatch”:[{“platformName”:“android”}]}}
[debug] [MJSONWP] Calling AppiumDriver.createSession() with args: [{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},null,{“desiredCapabilities”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“firstMatch”:[{“platformName”:“android”}]}]
[debug] [BaseDriver] Event ‘newSessionRequested’ logged at 1515300550618 (04:49:10 GMT+0000 (UTC))
[Appium] Creating new AndroidDriver (v1.37.0) session
[Appium] Capabilities:
[Appium] app: /bitrise/src/app/src/test/sniip-testing.apk
[Appium] appActivity: com.sniip.androidapp.activities.HomeActivity
[Appium] appPackage: com.sniip.androidapp.local2
[Appium] deviceName: emulator-5554
[Appium] newCommandTimeout: 60
[Appium] platformName: Android
[Appium] platformVersion: 5.1.1
[Appium] skipUnlock: true
[BaseDriver] Session created with session id: 8105a805-e715-4c37-939b-ca1b33e625bf
[debug] [AndroidDriver] Getting Java version
[AndroidDriver] Java version is: 1.8.0_151
[ADB] Checking whether adb is present
[ADB] Using adb from /opt/android-sdk-linux/platform-tools/adb
[AndroidDriver] Retrieving device list
[debug] [ADB] Trying to find a connected android device
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[AndroidDriver] Looking for a device with Android ‘5.1.1’
[debug] [ADB] Setting device id to emulator-5554
[ADB] Getting device platform version
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“getprop”,“ro.build.version.release”]
[debug] [ADB] Current device property ‘ro.build.version.release’: 5.1.1
[AndroidDriver] Using device: emulator-5554
[ADB] Checking whether adb is present
[debug] [ADB] Setting device id to emulator-5554
[BaseDriver] Using local app ‘/bitrise/src/app/src/test/sniip-testing.apk’
[debug] [AndroidDriver] Checking whether app is actually present
[AndroidDriver] Starting Android session
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“wait-for-device”]
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“echo”,“ping”]
[AndroidDriver] setDeviceLanguageCountry requires language or country.
[AndroidDriver] Got language: ‘null’ and country: ‘null’
[debug] [Logcat] Starting logcat capture
[debug] [AndroidDriver] Pushing settings apk to device…
[debug] [ADB] Getting install status for io.appium.settings
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“pm”,“list”,“packages”,“io.appium.settings”]
[debug] [ADB] App is not installed
[debug] [ADB] App ‘/usr/lib/node_modules/appium/node_modules/io.appium.settings/app/build/outputs/apk/settings_apk-debug.apk’ not installed. Installing
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“install”,"/usr/lib/node_modules/appium/node_modules/io.appium.settings/app/build/outputs/apk/settings_apk-debug.apk"]
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“getprop”,“ro.build.version.sdk”]
[debug] [ADB] Current device property ‘ro.build.version.sdk’: 22
[debug] [ADB] Device API level: 22
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“dumpsys”,“package”,“io.appium.settings”]
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“ps”]
[debug] [ADB] Device API level: 22
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“am”,“start”,"-W","-n",“io.appium.settings/.Settings”,"-a",“android.intent.action.MAIN”,"-c",“android.intent.category.LAUNCHER”,"-f",“0x10200000”]
[debug] [ADB] Device API level: 22
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“settings”,“put”,“secure”,“mock_location”,“1”]
[debug] [AndroidDriver] Pushing unlock helper app to device…
[debug] [ADB] Getting install status for io.appium.unlock
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“pm”,“list”,“packages”,“io.appium.unlock”]
[debug] [ADB] App is not installed
[debug] [ADB] App ‘/usr/lib/node_modules/appium/node_modules/appium-unlock/bin/unlock_apk-debug.apk’ not installed. Installing
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“install”,"/usr/lib/node_modules/appium/node_modules/appium-unlock/bin/unlock_apk-debug.apk"]
[ADB] Getting device platform version
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“getprop”,“ro.build.version.release”]
[debug] [ADB] Current device property ‘ro.build.version.release’: 5.1.1
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“wm”,“size”]
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“getprop”,“ro.product.model”]
[debug] [ADB] Current device property ‘ro.product.model’: Android SDK built for x86
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“getprop”,“ro.product.manufacturer”]
[debug] [ADB] Current device property ‘ro.product.manufacturer’: unknown
[AndroidDriver] Remote apk path is /data/local/tmp/50a0d2925ca8abb2f07b3fa873e997d5.apk
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“ls”,"/data/local/tmp/50a0d2925ca8abb2f07b3fa873e997d5.apk"]
[debug] [AndroidDriver] Checking if app is installed
[debug] [ADB] Getting install status for com.sniip.androidapp.local2
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“pm”,“list”,“packages”,“com.sniip.androidapp.local2”]
[debug] [ADB] App is not installed
[AndroidDriver] Apk is not yet installed
[AndroidDriver] installing apk from remote
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“mkdir”,"-p","/data/local/tmp"]
[AndroidDriver] Clearing out any existing remote apks with the same hash
[debug] [AndroidDriver] Removing any old apks
[debug] [AndroidDriver] Except [“50a0d2925ca8abb2f07b3fa873e997d5”]
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“ls”,"/data/local/tmp/*.apk"]
[debug] [AndroidDriver] No apks to examine
[AndroidDriver] Pushing com.sniip.androidapp.local2 to device. Will wait up to 90000 milliseconds before aborting
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“push”,"/bitrise/src/app/src/test/sniip-testing.apk","/data/local/tmp/50a0d2925ca8abb2f07b3fa873e997d5.apk"]
[debug] [ADB] Uninstalling com.sniip.androidapp.local2
[debug] [ADB] Getting install status for com.sniip.androidapp.local2
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“pm”,“list”,“packages”,“com.sniip.androidapp.local2”]
[debug] [ADB] App is not installed
[ADB] com.sniip.androidapp.local2 was not uninstalled, because it was not present on the device
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“pm”,“install”,"-r","/data/local/tmp/50a0d2925ca8abb2f07b3fa873e997d5.apk"]
[debug] [AndroidDriver] Extracting strings from apk /bitrise/src/app/src/test/sniip-testing.apk null /tmp/com.sniip.androidapp.local2
[debug] [ADB] Extracting strings for language: default
[debug] [ADB] Device API level: 22
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“getprop”,“persist.sys.language”]
[debug] [ADB] Current device property ‘persist.sys.language’:
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“getprop”,“ro.product.locale.language”]
[debug] [ADB] Current device property ‘ro.product.locale.language’: en
[debug] [ADB] No strings.xml for language ‘en’, getting default strings.xml
[debug] [ADB] Reading strings from converted strings.json
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“push”,"/tmp/com.sniip.androidapp.local2/strings.json","/data/local/tmp"]
[debug] [AndroidBootstrap] Watching for bootstrap disconnect
[debug] [ADB] Forwarding system: 4724 to device: 4724
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“forward”,“tcp:4724”,“tcp:4724”]
[debug] [UiAutomator] Starting UiAutomator
[debug] [UiAutomator] Moving to state ‘starting’
[debug] [UiAutomator] Parsing uiautomator jar
[debug] [UiAutomator] Found jar name: ‘AppiumBootstrap.jar’
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“push”,"/usr/lib/node_modules/appium/node_modules/appium-android-bootstrap/bootstrap/bin/AppiumBootstrap.jar","/data/local/tmp/"]
[debug] [ADB] Attempting to kill all uiautomator processes
[debug] [ADB] Getting all processes with uiautomator
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“ps”]
[ADB] No uiautomator process found to kill, continuing…
[debug] [UiAutomator] Starting UIAutomator
[debug] [ADB] Creating ADB subprocess with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“uiautomator”,“runtest”,“AppiumBootstrap.jar”,"-c",“io.appium.android.bootstrap.Bootstrap”,"-e",“pkg”,“com.sniip.androidapp.local2”,"-e",“disableAndroidWatchers”,false,"-e",“acceptSslCerts”,false]
[debug] [UiAutomator] Moving to state ‘online’
[AndroidBootstrap] Android bootstrap socket is now connected
[debug] [ADB] Device API level: 22
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“am”,“start”,"-W","-n",“com.sniip.androidapp.local2/com.sniip.androidapp.activities.HomeActivity”,"-S","-a",“android.intent.action.MAIN”,"-c",“android.intent.category.LAUNCHER”,"-f",“0x10200000”]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Loading json…
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] json loading complete.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Registered crash watchers.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Client connected
[Appium] New AndroidDriver session created successfully, session 8105a805-e715-4c37-939b-ca1b33e625bf added to master session list
[debug] [BaseDriver] Event ‘newSessionStarted’ logged at 1515300627932 (04:50:27 GMT+0000 (UTC))
[debug] [MJSONWP] Responding to client with driver.createSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- POST /wd/hub/session 200 77328 ms - 964
Jan 07, 2018 4:50:28 AM org.openqa.selenium.remote.ProtocolHandshake createSession
INFO: Detected dialect: OSS
[HTTP] --> POST /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf/timeouts {“type”:“implicit”,“ms”:10000}
[debug] [MJSONWP] Calling AppiumDriver.timeouts() with args: [“implicit”,10000,“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [BaseDriver] Set implicit wait to 10000ms
[debug] [MJSONWP] Responding to client with driver.timeouts() result: null
[HTTP] <-- POST /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf/timeouts 200 29 ms - 76
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 5 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 4 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 6 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 3 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 5 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 3 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 7 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 3 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 3 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 3 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 3 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 3 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 3 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 5 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 2 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 3 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 9 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 11 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 2 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 5 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 4 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 3 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 5 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 3 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 3 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 2 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 3 ms - 964
[HTTP] --> POST /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf/element {“using”:“id”,“value”:“com.sniip.androidapp.local2:id/tv_log_in”}
[debug] [MJSONWP] Calling AppiumDriver.findElement() with args: [“id”,“com.sniip.androidapp.local2:id/tv_log_in”,“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [BaseDriver] Valid locator strategies for this request: xpath, id, class name, accessibility id, -android uiautomator
[debug] [BaseDriver] Valid locator strategies for this request: xpath, id, class name, accessibility id, -android uiautomator
[debug] [BaseDriver] Waiting up to 10000 ms for condition
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/tv_log_in”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/tv_log_in”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/tv_log_in’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/tv_log_in]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:0,“value”:{“ELEMENT”:“1”}}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [MJSONWP] Responding to client with driver.findElement() result: {“ELEMENT”:“1”}
[HTTP] <-- POST /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf/element 200 34 ms - 87
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 3 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 5 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 3 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 4 ms - 964
[HTTP] --> POST /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf/element/1/click {“id”:“1”}
[debug] [MJSONWP] Calling AppiumDriver.click() with args: [“1”,“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“element:click”,“params”:{“elementId”:“1”}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“element:click”,“params”:{“elementId”:“1”}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: click
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:0,“value”:true}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [MJSONWP] Responding to client with driver.click() result: true
[HTTP] <-- POST /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf/element/1/click 200 357 ms - 76
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 12 ms - 964
[HTTP] --> POST /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf/element {“using”:“id”,“value”:“com.sniip.androidapp.local2:id/tv_log_in_with_mobile_or_email”}
[debug] [MJSONWP] Calling AppiumDriver.findElement() with args: [“id”,“com.sniip.androidapp.local2:id/tv_log_in_with_mobile_or_email”,“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [BaseDriver] Valid locator strategies for this request: xpath, id, class name, accessibility id, -android uiautomator
[debug] [BaseDriver] Valid locator strategies for this request: xpath, id, class name, accessibility id, -android uiautomator
[debug] [BaseDriver] Waiting up to 10000 ms for condition
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/tv_log_in_with_mobile_or_email”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/tv_log_in_with_mobile_or_email”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/tv_log_in_with_mobile_or_email’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/tv_log_in_with_mobile_or_email]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:0,“value”:{“ELEMENT”:“2”}}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [MJSONWP] Responding to client with driver.findElement() result: {“ELEMENT”:“2”}
[HTTP] <-- POST /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf/element 200 483 ms - 87
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 3 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 3 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 3 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 3 ms - 964
[HTTP] --> POST /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf/element/2/click {“id”:“2”}
[debug] [MJSONWP] Calling AppiumDriver.click() with args: [“2”,“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“element:click”,“params”:{“elementId”:“2”}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“element:click”,“params”:{“elementId”:“2”}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: click
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:0,“value”:true}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [MJSONWP] Responding to client with driver.click() result: true
[HTTP] <-- POST /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf/element/2/click 200 869 ms - 76
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 5 ms - 964
[HTTP] --> POST /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf/element {“using”:“id”,“value”:“com.sniip.androidapp.local2:id/et_email_or_mobile_number”}
[debug] [MJSONWP] Calling AppiumDriver.findElement() with args: [“id”,“com.sniip.androidapp.local2:id/et_email_or_mobile_number”,“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [BaseDriver] Valid locator strategies for this request: xpath, id, class name, accessibility id, -android uiautomator
[debug] [BaseDriver] Valid locator strategies for this request: xpath, id, class name, accessibility id, -android uiautomator
[debug] [BaseDriver] Waiting up to 10000 ms for condition
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_email_or_mobile_number”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_email_or_mobile_number”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_email_or_mobile_number’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_email_or_mobile_number]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:0,“value”:{“ELEMENT”:“3”}}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [MJSONWP] Responding to client with driver.findElement() result: {“ELEMENT”:“3”}
[HTTP] <-- POST /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf/element 200 493 ms - 87
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 4 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 6 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 5 ms - 964
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 5 ms - 964
[HTTP] --> POST /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf/element/3/value {“id”:“3”,“value”:[“0478732847”]}
[debug] [MJSONWP] Calling AppiumDriver.setValue() with args: [[“0478732847”],“3”,“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“element:setText”,“params”:{“elementId”:“3”,“text”:“0478732847”,“replace”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“element:setText”,“params”:{“elementId”:“3”,“text”:“0478732847”,“replace”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: setText
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using element passed in: 3
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Attempting to clear using UiObject.clearText().
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Sending plain text to element: 0478732847
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:0,“value”:true}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [MJSONWP] Responding to client with driver.setValue() result: true
[HTTP] <-- POST /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf/element/3/value 200 5072 ms - 76
[HTTP] --> GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.getSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [MJSONWP] Responding to client with driver.getSession() result: {“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true},“app”:"/bitrise/src/app/src/test/sniip-testing.apk",“appActivity”:“com.sniip.androidapp.activities.HomeActivity”,“appPackage”:“com.sniip.androidapp.local2”,“deviceName”:“emulator-5554”,“newCommandTimeout”:60,“platformName”:“Android”,“platformVersion”:“5.1.1”,“skipUnlock”:true,“deviceUDID”:“emulator-5554”,“deviceScreenSize”:“240x426”,“deviceModel”:“Android SDK built for x86”,“deviceManufacturer”:“unknown”}
[HTTP] <-- GET /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 3 ms - 964
[HTTP] --> POST /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf/element {“using”:“id”,“value”:“com.sniip.androidapp.local2:id/et_log_in_pw”}
[debug] [MJSONWP] Calling AppiumDriver.findElement() with args: [“id”,“com.sniip.androidapp.local2:id/et_log_in_pw”,“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [BaseDriver] Valid locator strategies for this request: xpath, id, class name, accessibility id, -android uiautomator
[debug] [BaseDriver] Valid locator strategies for this request: xpath, id, class name, accessibility id, -android uiautomator
[debug] [BaseDriver] Waiting up to 10000 ms for condition
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 509 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 1079 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 1687 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 2210 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 2762 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 3330 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 3897 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 4459 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 5057 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 5608 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 6160 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 6721 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 7284 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 7822 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 8386 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 8916 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 9473 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.local2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.local2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.local2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[HTTP] <-- POST /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf/element 500 10019 ms - 164
[HTTP] --> POST /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf/element {“using”:“id”,“value”:“com.sniip.androidapp.dev2:id/et_log_in_pw”}
[debug] [MJSONWP] Calling AppiumDriver.findElement() with args: [“id”,“com.sniip.androidapp.dev2:id/et_log_in_pw”,“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [BaseDriver] Valid locator strategies for this request: xpath, id, class name, accessibility id, -android uiautomator
[debug] [BaseDriver] Valid locator strategies for this request: xpath, id, class name, accessibility id, -android uiautomator
[debug] [BaseDriver] Waiting up to 10000 ms for condition
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 37 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 565 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 1122 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 1672 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 2229 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 2751 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 3371 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 3924 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 4476 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 5042 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 5570 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 6140 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 6674 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 7228 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 7772 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 8340 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 8899 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 9457 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.dev2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.dev2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.dev2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[HTTP] <-- POST /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf/element 500 10042 ms - 164
[HTTP] --> POST /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf/element {“using”:“id”,“value”:“com.sniip.androidapp.uat2:id/et_log_in_pw”}
[debug] [MJSONWP] Calling AppiumDriver.findElement() with args: [“id”,“com.sniip.androidapp.uat2:id/et_log_in_pw”,“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [BaseDriver] Valid locator strategies for this request: xpath, id, class name, accessibility id, -android uiautomator
[debug] [BaseDriver] Valid locator strategies for this request: xpath, id, class name, accessibility id, -android uiautomator
[debug] [BaseDriver] Waiting up to 10000 ms for condition
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 34 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 598 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 1124 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 1677 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 2198 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 2771 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 3304 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 3861 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 4393 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 4918 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 5500 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 6020 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 6574 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 7104 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 7631 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 8184 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 8745 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 9325 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [BaseDriver] Waited for 9892 ms so far
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“action”,“action”:“find”,“params”:{“strategy”:“id”,“selector”:“com.sniip.androidapp.uat2:id/et_log_in_pw”,“context”:"",“multiple”:false}}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type ACTION
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command action: find
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Failed to locate element. Clearing Accessibility cache and retrying.
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Finding ‘com.sniip.androidapp.uat2:id/et_log_in_pw’ using ‘ID’ with the contextId: ‘’ multiple: false
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.sniip.androidapp.uat2:id/et_log_in_pw]
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:7,“value”:“No element found”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[HTTP] <-- POST /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf/element 500 10492 ms - 164
[HTTP] --> DELETE /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf {}
[debug] [MJSONWP] Calling AppiumDriver.deleteSession() with args: [“8105a805-e715-4c37-939b-ca1b33e625bf”]
[debug] [BaseDriver] Event ‘quitSessionRequested’ logged at 1515300666977 (04:51:06 GMT+0000 (UTC))
[Appium] Removing session 8105a805-e715-4c37-939b-ca1b33e625bf from our master session list
[debug] [AndroidDriver] Shutting down Android driver
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“am”,“force-stop”,“com.sniip.androidapp.local2”]
[debug] [ADB] Pressing the HOME button
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“input”,“keyevent”,3]
[debug] [AndroidBootstrap] Sending command to android: {“cmd”:“shutdown”}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got data from client: {“cmd”:“shutdown”}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Got command of type SHUTDOWN
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:0,“value”:“OK, shutting down”}
[debug] [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Closed client connection
[debug] [AndroidBootstrap] [UIAUTO STDOUT] INSTRUMENTATION_STATUS: numtests=1
[debug] [AndroidBootstrap] [UIAUTO STDOUT] INSTRUMENTATION_STATUS: stream=.
[debug] [AndroidBootstrap] [UIAUTO STDOUT] INSTRUMENTATION_STATUS: id=UiAutomatorTestRunner
[debug] [AndroidBootstrap] [UIAUTO STDOUT] INSTRUMENTATION_STATUS: test=testRunServer
[debug] [AndroidBootstrap] [UIAUTO STDOUT] INSTRUMENTATION_STATUS: class=io.appium.android.bootstrap.Bootstrap
[debug] [AndroidBootstrap] [UIAUTO STDOUT] INSTRUMENTATION_STATUS: current=1
[debug] [AndroidBootstrap] [UIAUTO STDOUT] INSTRUMENTATION_STATUS_CODE: 0
[debug] [AndroidBootstrap] [UIAUTO STDOUT] INSTRUMENTATION_STATUS: stream=
[debug] [AndroidBootstrap] [UIAUTO STDOUT] Test results for WatcherResultPrinter=.
[debug] [AndroidBootstrap] [UIAUTO STDOUT] Time: 43.25
[debug] [AndroidBootstrap] [UIAUTO STDOUT] OK (1 test)
[debug] [AndroidBootstrap] [UIAUTO STDOUT] INSTRUMENTATION_STATUS_CODE: -1
[debug] [AndroidBootstrap] Received command result from bootstrap
[debug] [UiAutomator] Shutting down UiAutomator
[debug] [UiAutomator] Moving to state ‘stopping’
[debug] [UiAutomator] UiAutomator shut down normally
[debug] [UiAutomator] Moving to state ‘stopped’
[debug] [ADB] Attempting to kill all uiautomator processes
[debug] [ADB] Getting all processes with uiautomator
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“ps”]
[ADB] No uiautomator process found to kill, continuing…
[debug] [UiAutomator] Moving to state ‘stopped’
[debug] [Logcat] Stopping logcat capture
[debug] [ADB] Getting connected devices…
[debug] [ADB] 1 device(s) connected
[debug] [ADB] Running ‘/opt/android-sdk-linux/platform-tools/adb’ with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“am”,“force-stop”,“io.appium.unlock”]
[debug] [AndroidDriver] Not cleaning generated files. Add clearSystemFiles capability if wanted.
[debug] [BaseDriver] Event ‘quitSessionFinished’ logged at 1515300669256 (04:51:09 GMT+0000 (UTC))
[debug] [MJSONWP] Received response: null
[debug] [MJSONWP] But deleting session, so not returning
[debug] [MJSONWP] Responding to client with driver.deleteSession() result: null
[HTTP] <-- DELETE /wd/hub/session/8105a805-e715-4c37-939b-ca1b33e625bf 200 2282 ms - 76
[ERROR] Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 121.185 s <<< FAILURE! - in TestSuite
[ERROR] validLogout(com.sniip.androidapp.testCases.samplePackage.sampleLogin) Time elapsed: 38.816 s <<< FAILURE!
org.openqa.selenium.NoSuchElementException:
Can’t locate an element by this strategy: Locator map:

  • native content: “By.chained({By.all({By.id: com.sniip.androidapp.local2:id/et_log_in_pw,By.id: com.sniip.androidapp.dev2:id/et_log_in_pw,By.id: com.sniip.androidapp.uat2:id/et_log_in_pw})})”
  • html content: “by id or name “password””
    at com.sniip.androidapp.testCases.samplePackage.sampleLogin.validLogout(sampleLogin.java:29)
    Caused by: org.openqa.selenium.TimeoutException: Expected condition failed: waiting for io.appium.java_client.pagefactory.AppiumElementLocator$WaitingFunction@42530531 (tried for 1 second(s) with 500 MILLISECONDS interval)
    at com.sniip.androidapp.testCases.samplePackage.sampleLogin.validLogout(sampleLogin.java:29)
    Caused by: org.openqa.selenium.NoSuchElementException:
    Cannot locate an element using By.chained({By.all({By.id: com.sniip.androidapp.local2:id/et_log_in_pw,By.id: com.sniip.androidapp.dev2:id/et_log_in_pw,By.id: com.sniip.androidapp.uat2:id/et_log_in_pw})})
    For documentation on this error, please visit: http://seleniumhq.org/exceptions/no_such_element.html
    Build info: version: ‘3.8.1’, revision: ‘6e95a6684b’, time: ‘2017-12-01T18:33:54.468Z’
    System info: host: ‘t20180107021531-br-cont-prod-c1-x–host-preboot-android-005’, ip: ‘10.240.0.4’, os.name: ‘Linux’, os.arch: ‘amd64’, os.version: ‘4.4.0-57-generic’, java.version: ‘1.8.0_151’
    Driver info: driver.version: AndroidDriver
    at com.sniip.androidapp.testCases.samplePackage.sampleLogin.validLogout(sampleLogin.java:29)
    [INFO]
    [INFO] Results:
    [INFO]
    [ERROR] Failures:
    [ERROR] sampleLogin.validLogout:29 » NoSuchElement Can’t locate an element by this str…
    [INFO]
    [ERROR] Tests run: 1, Failures: 1, Errors: 0, Skipped: 0
    [INFO]
    [INFO] ------------------------------------------------------------------------
    [INFO] BUILD FAILURE
    [INFO] ------------------------------------------------------------------------
    [INFO] Total time: 02:35 min
    [INFO] Finished at: 2018-01-07T04:51:09+00:00
    [INFO] Final Memory: 27M/319M
    [INFO] ------------------------------------------------------------------------
    [ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.20.1:test (default-test) on project Sniip2.0: There are test failures.
    [ERROR]
    [ERROR] Please refer to /bitrise/src/target/surefire-reports for the individual test results.
    [ERROR] Please refer to dump files (if any exist) [date]-jvmRun[N].dump, [date].dumpstream and [date]-jvmRun[N].dumpstream.
    [ERROR] -> [Help 1]
    [ERROR]
    [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
    [ERROR] Re-run Maven using the -X switch to enable full debug logging.
    [ERROR]
    [ERROR] For more information about the errors and possible solutions, please read the following articles:
    [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
    | |
    ±–±--------------------------------------------------------------±---------+
    | x | Do anything with Script step (exit code: 1) | 256 sec |
    ±–±--------------------------------------------------------------±---------+
    | Issue tracker: https://github.com/bitrise-io/steps-script/issues |
    | Source: https://github.com/bitrise-io/steps-script |
    ±–±--------------------------------------------------------------±---------+