wix / Detox

Gray box end-to-end testing and automation framework for mobile apps
https://wix.github.io/Detox/
MIT License
11.16k stars 1.92k forks source link

Async tasks make the test fails #4270

Open abanoubamin opened 10 months ago

abanoubamin commented 10 months ago

What happened?

Putting await makes the tests fail, although removing it makes that tests However, I have to await some async tasks

// e2e/login.test.js
describe('Login', () => {
  beforeAll(async () => {
    await device.launchApp();
  });

  beforeEach(async () => {
    await device.reloadReactNative();
  });

  it('should show login button after tap', async () => {
    await element(by.id('email-input')).typeText('test@test.com');
    await element(by.id('password-input')).typeText('passcode');
    await element(by.id('login-button')).tap();
    await expect(element(by.id('login-button'))).toBeVisible();
  });
});

What was the expected behaviour?

await shouldn't make the tests fail

Was it tested on latest Detox?

Help us reproduce this issue!

No response

In what environment did this happen?

Detox version: ^20.13.5 React Native version: 0.68.5 Has Fabric (React Native's new rendering system) enabled: no Node version: v18.7.0 Test-runner: jest

Detox logs

Detox logs ``` 13:24:46.217 detox[10563] B node_modules/.bin/detox test --configuration android.emu.debug --record-logs all data: { "id": "8905610c-9b7d-b9f5-d99f-f715fa5f458f", "detoxConfig": { "configurationName": "android.emu.debug", "apps": { "default": { "type": "android.apk", "binaryPath": "android/app/build/outputs/apk/debug/app-debug.apk", "build": "cd android && ./gradlew app:assembleDebug app:assembleAndroidTest", "reversePorts": [ 8081 ] } }, "artifacts": { "rootDir": "artifacts/android.emu.debug.2023-11-04 11-24-46Z", "plugins": { "log": { "enabled": true, "keepOnlyFailedTestsArtifacts": false }, "screenshot": { "enabled": true, "shouldTakeAutomaticSnapshots": false, "keepOnlyFailedTestsArtifacts": false }, "video": { "enabled": false, "keepOnlyFailedTestsArtifacts": false }, "instruments": { "enabled": false, "keepOnlyFailedTestsArtifacts": false }, "uiHierarchy": { "enabled": false, "keepOnlyFailedTestsArtifacts": false } } }, "behavior": { "init": { "keepLockFile": false, "reinstallApp": true, "exposeGlobals": true }, "cleanup": { "shutdownDevice": false }, "launchApp": "auto" }, "cli": { "recordLogs": "all", "configuration": "android.emu.debug", "start": true }, "device": { "type": "android.emulator", "device": { "avdName": "Pixel_3a_API_31_arm64-v8a" } }, "logger": { "level": "info", "overrideConsole": true, "options": { "showLoggerName": true, "showPid": true, "showLevel": false, "showMetadata": false, "basepath": "/Users/abanoubamin/Desktop/Angelroute/FisherMan/node_modules/detox/src", "prefixers": {}, "stringifiers": {} } }, "testRunner": { "retries": 0, "forwardEnv": false, "bail": false, "jest": { "setupTimeout": 120000, "teardownTimeout": 30000, "retryAfterCircusRetries": false, "reportWorkerAssign": true }, "args": { "$0": "jest", "_": [], "config": "e2e/jest.config.js", "--": [] } }, "session": { "autoStart": true, "debugSynchronization": 10000 } }, "detoxIPCServer": "primary-10563", "testResults": [], "testSessionIndex": 0, "workersCount": 0 } 13:24:46.226 detox[10563] i Server path not specified, so defaulting to ipc.config.socketRoot + ipc.config.appspace + ipc.config.id /tmp/detox.primary-10563 13:24:46.230 detox[10563] i starting server on /tmp/detox.primary-10563 13:24:46.230 detox[10563] i starting TLS server false 13:24:46.231 detox[10563] i starting server as Unix || Windows Socket 13:24:46.282 detox[10563] B init args: () 13:24:46.287 detox[10563] E init 13:24:46.289 detox[10563] i Detox server listening on localhost:65520... 13:24:46.293 detox[10563] i Serialized the session state at: /private/var/folders/_w/zzmb_xnj4xddgbrt6hhd0q680000gn/T/8905610c-9b7d-b9f5-d99f-f715fa5f458f.detox.json 13:24:46.297 detox[10563] B jest --config e2e/jest.config.js 13:24:47.711 detox[10566] i Service path not specified, so defaulting to ipc.config.socketRoot + ipc.config.appspace + id 13:24:47.712 detox[10566] i requested connection to primary-10563 /tmp/detox.primary-10563 13:24:47.712 detox[10566] i Connecting client on Unix Socket : /tmp/detox.primary-10563 13:24:47.714 detox[10563] i ## socket connection to server detected ## 13:24:47.714 detox[10566] i retrying reset 13:24:47.716 detox[10566] i dispatching event to primary-10563 /tmp/detox.primary-10563 : registerContext , { id: 'secondary-10566' } 13:24:47.718 detox[10563] i received event of : registerContext { id: 'secondary-10566' } 13:24:47.719 detox[10563] i dispatching event to socket : registerContextDone { testResults: [], testSessionIndex: 0 } 13:24:47.720 detox[10566] i ## received events ## 13:24:47.721 detox[10566] i detected event registerContextDone { testResults: [], testSessionIndex: 0 } 13:24:47.861 detox[10566] B e2e/login.test.js 13:24:47.886 detox[10566] B set up environment 13:24:47.887 detox[10566] i dispatching event to primary-10563 /tmp/detox.primary-10563 : registerWorker , { workerId: 'w1' } 13:24:47.889 detox[10563] i received event of : registerWorker { workerId: 'w1' } 13:24:47.889 detox[10563] i dispatching event to socket : registerWorkerDone { workersCount: 1 } 13:24:47.890 detox[10563] i broadcasting event to all known sockets listening to /tmp/detox.primary-10563 : sessionStateUpdate { workersCount: 1 } 13:24:47.890 detox[10566] i ## received events ## 13:24:47.891 detox[10566] i detected event registerWorkerDone { workersCount: 1 } 13:24:48.133 detox[10566] i ## received events ## 13:24:48.133 detox[10566] i detected event sessionStateUpdate { workersCount: 1 } 13:24:48.140 detox[10563] B connection :65520<->:65529 13:24:48.141 detox[10566] i opened web socket to: ws://localhost:65520 13:24:48.144 detox[10566] i send message data: {"type":"login","params":{"sessionId":"6d2e7bb5-06a0-e368-d43b-3a40687b34c5","role":"tester"},"messageId":0} 13:24:48.146 detox[10563] i get data: {"type":"login","params":{"sessionId":"6d2e7bb5-06a0-e368-d43b-3a40687b34c5","role":"tester"},"messageId":0} 13:24:48.146 detox[10563] i created session 6d2e7bb5-06a0-e368-d43b-3a40687b34c5 13:24:48.147 detox[10563] i send data: { "type": "loginSuccess", "params": { "testerConnected": true, "appConnected": false }, "messageId": 0 } 13:24:48.147 detox[10563] i tester joined session 6d2e7bb5-06a0-e368-d43b-3a40687b34c5 13:24:48.148 detox[10566] i get message data: {"type":"loginSuccess","params":{"testerConnected":true,"appConnected":false},"messageId":0} 13:24:48.192 detox[10566] i dispatching event to primary-10563 /tmp/detox.primary-10563 : allocateDevice , {} 13:24:48.193 detox[10563] i received event of : allocateDevice {} 13:24:48.193 detox[10563] B allocate data: { "type": "android.emulator", "device": { "avdName": "Pixel_3a_API_31_arm64-v8a" } } 13:24:48.194 detox[10563] i "/Users/abanoubamin/Library/Android/sdk/emulator/emulator" -list-avds --verbose 13:24:48.242 detox[10563] i Pixel_3a_API_31_arm64-v8a Pixel_C_API_31 13:24:48.242 detox[10563] i "/Users/abanoubamin/Library/Android/sdk/emulator/emulator" -version 13:24:48.299 detox[10563] i Android emulator version 30.8.4.0 (build_id 7600983) (CL:N/A) Copyright (C) 2006-2017 The Android Open Source Project and many others. This program is a derivative of the QEMU CPU emulator (www.qemu.org). This software is licensed under the terms of the GNU General Public License version 2, as published by the Free Software Foundation, and may be copied, distributed, and modified under those terms. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 13:24:48.299 detox[10563] i Detected emulator binary version { major: 30, minor: 8, patch: 4, toString: [Function: toString] } 13:24:48.301 detox[10563] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" devices 13:24:48.339 detox[10563] i List of devices attached emulator-19198 device 13:24:48.343 detox[10563] i port: 19198, host: localhost 13:24:48.355 detox[10563] i Found a matching & free device emulator-19198 13:24:48.356 detox[10563] i settled on emulator-19198 (Pixel_3a_API_31_arm64-v8a) data: { "id": "emulator-19198", "adbName": "emulator-19198", "name": "emulator-19198 (Pixel_3a_API_31_arm64-v8a)" } 13:24:48.356 detox[10563] E allocate 13:24:48.356 detox[10563] B post-allocate: emulator-19198 data: { "id": "emulator-19198", "adbName": "emulator-19198", "name": "emulator-19198 (Pixel_3a_API_31_arm64-v8a)" } 13:24:48.357 detox[10563] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 shell "getprop dev.bootcomplete" 13:24:48.464 detox[10563] i 1 13:24:48.465 detox[10563] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 shell "getprop ro.build.version.sdk" 13:24:48.535 detox[10563] i 31 13:24:48.536 detox[10563] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 shell "settings put global animator_duration_scale 0" 13:24:48.596 detox[10563] i 13:24:48.596 detox[10563] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 shell "settings put global window_animation_scale 0" 13:24:48.645 detox[10563] i 13:24:48.645 detox[10563] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 shell "settings put global transition_animation_scale 0" 13:24:48.690 detox[10563] i 13:24:48.690 detox[10563] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 shell "dumpsys power | grep \"^[ ]*m[UW].*=\"" 13:24:48.762 detox[10563] i mWakefulness=Awake mWakefulnessChanging=false mWakeLockSummary=0x0 mWakeUpWhenPluggedOrUnpluggedConfig=false mWakeUpWhenPluggedOrUnpluggedInTheaterModeConfig=false mUserActivityTimeoutOverrideFromWindowManager=-1 mUserInactiveOverrideFromWindowManager=false mUserId=0 mWakeLockSummary=0x0 mUserInteractionBackoffMillis=60000 13:24:48.763 detox[10563] E post-allocate: emulator-19198 13:24:48.764 detox[10563] i dispatching event to socket : allocateDeviceDone { deviceCookie: { id: 'emulator-19198', adbName: 'emulator-19198', name: 'emulator-19198 (Pixel_3a_API_31_arm64-v8a)' } } 13:24:48.764 detox[10566] i ## received events ## 13:24:48.764 detox[10566] i detected event allocateDeviceDone { deviceCookie: { id: 'emulator-19198', adbName: 'emulator-19198', name: 'emulator-19198 (Pixel_3a_API_31_arm64-v8a)' } } 13:24:48.792 detox[10566] B onBootDevice args: ({"deviceId":"emulator-19198"}) 13:24:48.792 detox[10566] E onBootDevice 13:24:48.794 detox[10566] B installUtilBinaries args: () 13:24:48.794 detox[10566] E installUtilBinaries 13:24:48.794 detox[10566] B selectApp args: ("default") 13:24:48.798 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/build-tools/33.0.0/aapt" dump badging "/Users/abanoubamin/Desktop/Angelroute/FisherMan/android/app/build/outputs/apk/debug/app-debug.apk" 13:24:48.889 detox[10566] i package: name='de.angelroute.fisherman' versionCode='40' versionName='1.1.0' platformBuildVersionName='13' platformBuildVersionCode='33' compileSdkVersion='33' compileSdkVersionCodename='13' sdkVersion:'21' targetSdkVersion:'33' uses-permission: name='android.permission.SYSTEM_ALERT_WINDOW' uses-permission: name='android.permission.INTERNET' uses-permission: name='android.permission.CAMERA' uses-permission: name='android.permission.ACCESS_WIFI_STATE' uses-permission: name='android.permission.ACCESS_NETWORK_STATE' uses-permission: name='android.permission.USE_BIOMETRIC' uses-permission: name='android.permission.USE_FINGERPRINT' uses-permission: name='android.permission.WRITE_EXTERNAL_STORAGE' uses-permission: name='android.permission.READ_EXTERNAL_STORAGE' uses-permission: name='android.permission.WAKE_LOCK' uses-permission: name='android.permission.RECEIVE_BOOT_COMPLETED' uses-permission: name='android.permission.FOREGROUND_SERVICE' uses-permission: name='com.google.android.c2dm.permission.RECEIVE' uses-permission: name='de.angelroute.fisherman.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION' uses-permission: name='com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE' application-label:'Angelroute' application-label-af:'Angelroute' application-label-am:'Angelroute' application-label-ar:'Angelroute' application-label-as:'Angelroute' application-label-az:'Angelroute' application-label-be:'Angelroute' application-label-bg:'Angelroute' application-label-bg-BG:'Angelroute' application-label-bn:'Angelroute' application-label-bs:'Angelroute' application-label-ca:'Angelroute' application-label-ca-ES:'Angelroute' application-label-cs:'Angelroute' application-label-cs-CZ:'Angelroute' application-label-da:'Angelroute' application-label-de:'Angelroute' application-label-de-DE:'Angelroute' application-label-el:'Angelroute' application-label-el-GR:'Angelroute' application-label-en:'Angelroute' application-label-en-AU:'Angelroute' application-label-en-CA:'Angelroute' application-label-en-GB:'Angelroute' application-label-en-IN:'Angelroute' application-label-en-SG:'Angelroute' application-label-en-XC:'Angelroute' application-label-eo:'Angelroute' application-label-es:'Angelroute' application-label-es-419:'Angelroute' application-label-es-ES:'Angelroute' application-label-es-US:'Angelroute' application-label-et:'Angelroute' application-label-et-EE:'Angelroute' application-label-eu:'Angelroute' application-label-fa:'Angelroute' application-label-fi:'Angelroute' application-label-fil:'Angelroute' application-label-fil-PH:'Angelroute' application-label-fo:'Angelroute' application-label-fr:'Angelroute' application-label-fr-CA:'Angelroute' application-label-fr-FR:'Angelroute' application-label-gl:'Angelroute' application-label-gu:'Angelroute' application-label-he:'Angelroute' application-label-hi:'Angelroute' application-label-hr:'Angelroute' application-label-hr-HR:'Angelroute' application-label-hu:'Angelroute' application-label-hu-HU:'Angelroute' application-label-hy:'Angelroute' application-label-id:'Angelroute' application-label-in:'Angelroute' application-label-in-ID:'Angelroute' application-label-is:'Angelroute' application-label-it:'Angelroute' application-label-it-IT:'Angelroute' application-label-iw:'Angelroute' application-label-ja:'Angelroute' application-label-ka:'Angelroute' application-label-kk:'Angelroute' application-label-km:'Angelroute' application-label-kn:'Angelroute' application-label-ko:'Angelroute' application-label-ko-KR:'Angelroute' application-label-ky:'Angelroute' application-label-lo:'Angelroute' application-label-lt:'Angelroute' application-label-lt-LT:'Angelroute' application-label-lv:'Angelroute' application-label-lv-LV:'Angelroute' application-label-mk:'Angelroute' application-label-ml:'Angelroute' application-label-mn:'Angelroute' application-label-mr:'Angelroute' application-label-ms:'Angelroute' application-label-ms-MY:'Angelroute' application-label-mt:'Angelroute' application-label-mt-MT:'Angelroute' application-label-my:'Angelroute' application-label-nb:'Angelroute' application-label-nb-NO:'Angelroute' application-label-ne:'Angelroute' application-label-nl:'Angelroute' application-label-nl-BE:'Angelroute' application-label-nl-NL:'Angelroute' application-label-nn:'Angelroute' application-label-nn-NO:'Angelroute' application-label-no:'Angelroute' application-label-or:'Angelroute' application-label-pa:'Angelroute' application-label-pl:'Angelroute' application-label-pl-PL:'Angelroute' application-label-pt:'Angelroute' application-label-pt-BR:'Angelroute' application-label-pt-PT:'Angelroute' application-label-ro:'Angelroute' application-label-ro-RO:'Angelroute' application-label-ru:'Angelroute' application-label-ru-RU:'Angelroute' application-label-si:'Angelroute' application-label-sk:'Angelroute' application-label-sk-SK:'Angelroute' application-label-sl:'Angelroute' application-label-sl-SI:'Angelroute' application-label-sq:'Angelroute' application-label-sr:'Angelroute' application-label-sr-Cyrl:'Angelroute' application-label-sr-Latn:'Angelroute' application-label-sv:'Angelroute' application-label-sv-SE:'Angelroute' application-label-sw:'Angelroute' application-label-ta:'Angelroute' application-label-te:'Angelroute' application-label-th:'Angelroute' application-label-th-TH:'Angelroute' application-label-tl:'Angelroute' application-label-tr:'Angelroute' application-label-tr-TR:'Angelroute' application-label-uk:'Angelroute' application-label-ur:'Angelroute' application-label-uz:'Angelroute' application-label-vi:'Angelroute' application-label-vi-VN:'Angelroute' application-label-zh:'Angelroute' application-label-zh-CN:'Angelroute' application-label-zh-HK:'Angelroute' application-label-zh-TW:'Angelroute' application-label-zu:'Angelroute' application-icon-120:'res/mipmap-anydpi-v26/ic_launcher.xml' application-icon-160:'res/mipmap-anydpi-v26/ic_launcher.xml' application-icon-240:'res/mipmap-anydpi-v26/ic_launcher.xml' application-icon-320:'res/mipmap-anydpi-v26/ic_launcher.xml' application-icon-480:'res/mipmap-anydpi-v26/ic_launcher.xml' application-icon-640:'res/mipmap-anydpi-v26/ic_launcher.xml' application-icon-65534:'res/mipmap-anydpi-v26/ic_launcher.xml' application: label='Angelroute' icon='res/mipmap-anydpi-v26/ic_launcher.xml' application-debuggable launchable-activity: name='de.angelroute.fisherman.MainActivity' label='Angelroute' icon='' uses-library-not-required:'org.apache.http.legacy' feature-group: label='' uses-gl-es: '0x20000' uses-feature: name='android.hardware.camera' uses-implied-feature: name='android.hardware.camera' reason='requested android.permission.CAMERA permission' uses-feature: name='android.hardware.faketouch' uses-implied-feature: name='android.hardware.faketouch' reason='default feature for all apps' uses-feature: name='android.hardware.wifi' uses-implied-feature: name='android.hardware.wifi' reason='requested android.permission.ACCESS_WIFI_STATE permission' main other-activities other-receivers other-services supports-screens: 'small' 'normal' 'large' 'xlarge' supports-any-density: 'true' locales: '--_--' 'af' 'am' 'ar' 'as' 'az' 'be' 'bg' 'bg-BG' 'bn' 'bs' 'ca' 'ca-ES' 'cs' 'cs-CZ' 'da' 'de' 'de-DE' 'el' 'el-GR' 'en' 'en-AU' 'en-CA' 'en-GB' 'en-IN' 'en-SG' 'en-XC' 'eo' 'es' 'es-419' 'es-ES' 'es-US' 'et' 'et-EE' 'eu' 'fa' 'fi' 'fil' 'fil-PH' 'fo' 'fr' 'fr-CA' 'fr-FR' 'gl' 'gu' 'he' 'hi' 'hr' 'hr-HR' 'hu' 'hu-HU' 'hy' 'id' 'in' 'in-ID' 'is' 'it' 'it-IT' 'iw' 'ja' 'ka' 'kk' 'km' 'kn' 'ko' 'ko-KR' 'ky' 'lo' 'lt' 'lt-LT' 'lv' 'lv-LV' 'mk' 'ml' 'mn' 'mr' 'ms' 'ms-MY' 'mt' 'mt-MT' 'my' 'nb' 'nb-NO' 'ne' 'nl' 'nl-BE' 'nl-NL' 'nn' 'nn-NO' 'no' 'or' 'pa' 'pl' 'pl-PL' 'pt' 'pt-BR' 'pt-PT' 'ro' 'ro-RO' 'ru' 'ru-RU' 'si' 'sk' 'sk-SK' 'sl' 'sl-SI' 'sq' 'sr' 'sr-Cyrl' 'sr-Latn' 'sv' 'sv-SE' 'sw' 'ta' 'te' 'th' 'th-TH' 'tl' 'tr' 'tr-TR' 'uk' 'ur' 'uz' 'vi' 'vi-VN' 'zh' 'zh-CN' 'zh-HK' 'zh-TW' 'zu' densities: '120' '160' '240' '320' '480' '640' '65534' native-code: 'arm64-v8a' 'armeabi' 'armeabi-v7a' 'x86' 'x86_64' 13:24:48.890 detox[10566] E selectApp 13:24:48.891 detox[10566] B uninstallApp args: () 13:24:48.891 detox[10566] B onBeforeUninstallApp args: ({"deviceId":"emulator-19198","bundleId":"de.angelroute.fisherman"}) 13:24:48.891 detox[10566] E onBeforeUninstallApp 13:24:48.891 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 shell "pm list packages de.angelroute.fisherman" 13:24:48.946 detox[10566] i package:de.angelroute.fisherman.test package:de.angelroute.fisherman 13:24:48.947 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 uninstall de.angelroute.fisherman 13:24:49.596 detox[10566] i Success 13:24:49.597 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 shell "pm list packages de.angelroute.fisherman.test" 13:24:49.741 detox[10566] i package:de.angelroute.fisherman.test 13:24:49.741 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 uninstall de.angelroute.fisherman.test 13:24:50.272 detox[10566] i Success 13:24:50.272 detox[10566] E uninstallApp 13:24:50.273 detox[10566] B selectApp args: ("default") 13:24:50.275 detox[10566] B terminateApp args: () 13:24:50.276 detox[10566] B onBeforeTerminateApp args: ({"deviceId":"emulator-19198","bundleId":"de.angelroute.fisherman"}) 13:24:50.276 detox[10566] E onBeforeTerminateApp 13:24:50.276 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 shell "am force-stop de.angelroute.fisherman" 13:24:50.425 detox[10566] i 13:24:50.425 detox[10566] B onTerminateApp args: ({"deviceId":"emulator-19198","bundleId":"de.angelroute.fisherman"}) 13:24:50.426 detox[10566] E onTerminateApp 13:24:50.426 detox[10566] E terminateApp 13:24:50.426 detox[10566] E selectApp 13:24:50.428 detox[10566] B installApp args: () 13:24:50.430 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/build-tools/33.0.0/aapt" dump xmlstrings "/Users/abanoubamin/Desktop/Angelroute/FisherMan/android/app/build/outputs/apk/debug/app-debug.apk" AndroidManifest.xml 13:24:50.469 detox[10566] i String pool of 205 unique UTF-16 non-sorted strings, 205 entries and 0 styles using 14412 bytes: String #0: theme String #1: label String #2: icon String #3: name String #4: permission String #5: protectionLevel String #6: enabled String #7: debuggable String #8: exported String #9: process String #10: multiprocess String #11: authorities String #12: initOrder String #13: grantUriPermissions String #14: launchMode String #15: configChanges String #16: value String #17: resource String #18: mimeType String #19: scheme String #20: host String #21: path String #22: pathPrefix String #23: minSdkVersion String #24: versionCode String #25: versionName String #26: windowSoftInputMode String #27: targetSdkVersion String #28: allowBackup String #29: glEsVersion String #30: required String #31: autoRemoveFromRecents String #32: usesCleartextTraffic String #33: autoVerify String #34: directBootAware String #35: networkSecurityConfig String #36: roundIcon String #37: compileSdkVersion String #38: compileSdkVersionCodename String #39: appComponentFactory String #40: */* String #41: /de.angelroute.fisherman String #42: /de.angelroute.fisherman/authentication_return String #43: /de.angelroute.fisherman/cancel String #44: /de.angelroute.fisherman/success String #45: 1.1.0 String #46: 13 String #47: :phoenix String #48: AIzaSyBF0olQ_38PZ3J_HyKVO3EITw0hdaOPA7Q String #49: GlideModule String #50: action String #51: activity String #52: aia-compat-api-min-version String #53: android String #54: android.intent.action.ACTION_POWER_CONNECTED String #55: android.intent.action.ACTION_POWER_DISCONNECTED String #56: android.intent.action.BATTERY_LOW String #57: android.intent.action.BATTERY_OKAY String #58: android.intent.action.BOOT_COMPLETED String #59: android.intent.action.DEVICE_STORAGE_LOW String #60: android.intent.action.DEVICE_STORAGE_OK String #61: android.intent.action.DIAL String #62: android.intent.action.GET_CONTENT String #63: android.intent.action.MAIN String #64: android.intent.action.SENDTO String #65: android.intent.action.TIMEZONE_CHANGED String #66: android.intent.action.TIME_SET String #67: android.intent.action.VIEW String #68: android.intent.category.BROWSABLE String #69: android.intent.category.DEFAULT String #70: android.intent.category.LAUNCHER String #71: android.media.action.IMAGE_CAPTURE String #72: android.net.conn.CONNECTIVITY_CHANGE String #73: android.permission.ACCESS_NETWORK_STATE String #74: android.permission.ACCESS_WIFI_STATE String #75: android.permission.BIND_JOB_SERVICE String #76: android.permission.CAMERA String #77: android.permission.DUMP String #78: android.permission.FOREGROUND_SERVICE String #79: android.permission.INTERNET String #80: android.permission.READ_EXTERNAL_STORAGE String #81: android.permission.RECEIVE_BOOT_COMPLETED String #82: android.permission.SYSTEM_ALERT_WINDOW String #83: android.permission.USE_BIOMETRIC String #84: android.permission.USE_FINGERPRINT String #85: android.permission.WAKE_LOCK String #86: android.permission.WRITE_EXTERNAL_STORAGE String #87: android.support.FILE_PROVIDER_PATHS String #88: androidx.core.app.CoreComponentFactory String #89: androidx.emoji2.text.EmojiCompatInitializer String #90: androidx.lifecycle.ProcessLifecycleInitializer String #91: androidx.profileinstaller.ProfileInstallReceiver String #92: androidx.profileinstaller.ProfileInstallerInitializer String #93: androidx.profileinstaller.action.BENCHMARK_OPERATION String #94: androidx.profileinstaller.action.INSTALL_PROFILE String #95: androidx.profileinstaller.action.SAVE_PROFILE String #96: androidx.profileinstaller.action.SKIP_FILE String #97: androidx.room.MultiInstanceInvalidationService String #98: androidx.startup String #99: androidx.startup.InitializationProvider String #100: androidx.work.WorkManagerInitializer String #101: androidx.work.diagnostics.REQUEST_DIAGNOSTICS String #102: androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryChargingProxy String #103: androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryNotLowProxy String #104: androidx.work.impl.background.systemalarm.ConstraintProxy$NetworkStateProxy String #105: androidx.work.impl.background.systemalarm.ConstraintProxy$StorageNotLowProxy String #106: androidx.work.impl.background.systemalarm.ConstraintProxyUpdateReceiver String #107: androidx.work.impl.background.systemalarm.RescheduleReceiver String #108: androidx.work.impl.background.systemalarm.SystemAlarmService String #109: androidx.work.impl.background.systemalarm.UpdateProxies String #110: androidx.work.impl.background.systemjob.SystemJobService String #111: androidx.work.impl.diagnostics.DiagnosticsReceiver String #112: androidx.work.impl.foreground.SystemForegroundService String #113: androidx.work.impl.utils.ForceStopRunnable$BroadcastReceiver String #114: angelroute String #115: application String #116: auth-redirect String #117: category String #118: com.android.chrome String #119: com.bumptech.glide.integration.okhttp3.OkHttpGlideModule String #120: com.facebook.react.devsupport.DevSettingsActivity String #121: com.google.android.apps.maps String #122: com.google.android.c2dm.permission.RECEIVE String #123: com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE String #124: com.google.android.geo.API_KEY String #125: com.google.android.gms.common.api.GoogleApiActivity String #126: com.google.android.gms.version String #127: com.google.android.gms.wallet.api.enabled String #128: com.jakewharton.processphoenix.ProcessPhoenix String #129: com.reactnative.ivpusic.imagepicker.IvpusicImagePickerFileProvider String #130: com.reactnativecommunity.webview.RNCWebViewFileProvider String #131: com.stripe.android.customersheet.CustomerSheetActivity String #132: com.stripe.android.financialconnections.FinancialConnectionsSheetActivity String #133: com.stripe.android.financialconnections.FinancialConnectionsSheetRedirectActivity String #134: com.stripe.android.financialconnections.appinitializer.FinancialConnectionsInitializer String #135: com.stripe.android.financialconnections.ui.FinancialConnectionsSheetNativeActivity String #136: com.stripe.android.googlepaylauncher.GooglePayLauncherActivity String #137: com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherActivity String #138: com.stripe.android.link.LinkForegroundActivity String #139: com.stripe.android.link.LinkRedirectHandlerActivity String #140: com.stripe.android.payments.StripeBrowserLauncherActivity String #141: com.stripe.android.payments.StripeBrowserProxyReturnActivity String #142: com.stripe.android.payments.bankaccount.ui.CollectBankAccountActivity String #143: com.stripe.android.payments.core.authentication.threeds2.Stripe3ds2TransactionActivity String #144: com.stripe.android.payments.paymentlauncher.PaymentLauncherConfirmationActivity String #145: com.stripe.android.paymentsheet.PaymentOptionsActivity String #146: com.stripe.android.paymentsheet.PaymentSheetActivity String #147: com.stripe.android.paymentsheet.addresselement.AddressElementActivity String #148: com.stripe.android.paymentsheet.paymentdatacollection.polling.PollingActivity String #149: com.stripe.android.stripe3ds2.views.ChallengeActivity String #150: com.stripe.android.ui.core.cardscan.CardScanActivity String #151: com.stripe.android.view.AddPaymentMethodActivity String #152: com.stripe.android.view.PaymentAuthWebViewActivity String #153: com.stripe.android.view.PaymentFlowActivity String #154: com.stripe.android.view.PaymentMethodsActivity String #155: com.stripe.android.view.PaymentRelayActivity String #156: com.yalantis.ucrop.UCropActivity String #157: complete String #158: data String #159: de.angelroute.fisherman String #160: de.angelroute.fisherman.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION String #161: de.angelroute.fisherman.MainActivity String #162: de.angelroute.fisherman.MainApplication String #163: de.angelroute.fisherman.SentryInitProvider String #164: de.angelroute.fisherman.SentryPerformanceProvider String #165: de.angelroute.fisherman.androidx-startup String #166: de.angelroute.fisherman.fileprovider String #167: de.angelroute.fisherman.financialconnections-init String #168: de.angelroute.fisherman.provider String #169: http String #170: http://schemas.android.com/apk/res/android String #171: https String #172: im.crisp.client.ChatActivity String #173: image/* String #174: intent String #175: intent-filter String #176: io.sentry.android.core.SentryInitProvider String #177: io.sentry.android.core.SentryPerformanceProvider String #178: io.sentry.auto-init String #179: link-accounts String #180: link-native-accounts String #181: link-popup String #182: mailto String #183: manifest String #184: meta-data String #185: native-redirect String #186: org.apache.http.legacy String #187: package String #188: payment_return_url String #189: permission String #190: platformBuildVersionCode String #191: platformBuildVersionName String #192: provider String #193: queries String #194: receiver String #195: service String #196: stripe String #197: stripe-auth String #198: stripesdk String #199: tel String #200: uses-feature String #201: uses-library String #202: uses-permission String #203: uses-sdk String #204: www.angelroute.de 13:24:50.471 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/build-tools/33.0.0/aapt" dump xmlstrings "/Users/abanoubamin/Desktop/Angelroute/FisherMan/android/app/build/outputs/apk/androidTest/debug/app-debug-androidTest.apk" AndroidManifest.xml 13:24:50.531 detox[10566] i String pool of 42 unique UTF-16 non-sorted strings, 42 entries and 0 styles using 2120 bytes: String #0: theme String #1: label String #2: name String #3: debuggable String #4: exported String #5: priority String #6: targetPackage String #7: handleProfiling String #8: functionalTest String #9: minSdkVersion String #10: targetSdkVersion String #11: compileSdkVersion String #12: compileSdkVersionCodename String #13: 13 String #14: Tests for de.angelroute.fisherman String #15: activity String #16: android String #17: android.intent.category.LAUNCHER String #18: android.permission.REORDER_TASKS String #19: android.test.runner String #20: androidx.test.core.app.InstrumentationActivityInvoker$BootstrapActivity String #21: androidx.test.core.app.InstrumentationActivityInvoker$EmptyActivity String #22: androidx.test.core.app.InstrumentationActivityInvoker$EmptyFloatingActivity String #23: androidx.test.orchestrator String #24: androidx.test.runner.AndroidJUnitRunner String #25: androidx.test.services String #26: application String #27: category String #28: com.google.android.apps.common.testing.services String #29: de.angelroute.fisherman String #30: de.angelroute.fisherman.test String #31: http://schemas.android.com/apk/res/android String #32: instrumentation String #33: intent-filter String #34: manifest String #35: package String #36: platformBuildVersionCode String #37: platformBuildVersionName String #38: queries String #39: uses-library String #40: uses-permission String #41: uses-sdk 13:24:50.531 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 shell "rm -fr /data/local/tmp/detox" 13:24:50.612 detox[10566] i 13:24:50.612 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 shell "mkdir -p /data/local/tmp/detox" 13:24:50.732 detox[10566] i 13:24:50.732 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 push "/Users/abanoubamin/Desktop/Angelroute/FisherMan/android/app/build/outputs/apk/debug/app-debug.apk" "/data/local/tmp/detox/Application.apk" 13:24:51.385 detox[10566] i /Users/abanoubamin/Desktop/Angelroute/FisherMan/android/app/build/outputs/apk/debug/app-debug.apk: 1 file pushed, 0 skipped. 145.7 MB/s (89320847 bytes in 0.585s) 13:24:51.385 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 shell "getprop ro.build.version.sdk" 13:24:51.450 detox[10566] i 31 13:24:51.462 detox[10566] i /Users/abanoubamin/Library/Android/sdk/platform-tools/adb -s emulator-19198 shell pm install -r -g -t /data/local/tmp/detox/Application.apk 13:24:52.093 detox[10566] i Success 13:24:52.100 detox[10566] i /Users/abanoubamin/Library/Android/sdk/platform-tools/adb -s emulator-19198 shell pm install -r -g -t /data/local/tmp/detox/Application.apk exited with code #0 13:24:52.100 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 push "/Users/abanoubamin/Desktop/Angelroute/FisherMan/android/app/build/outputs/apk/androidTest/debug/app-debug-androidTest.apk" "/data/local/tmp/detox/Test.apk" 13:24:52.187 detox[10566] i /Users/abanoubamin/Desktop/Angelroute/FisherMan/android/app/build/outputs/apk/androidTest/debug/app-debug-androidTest.apk: 1 file pushed, 0 skipped. 270.5 MB/s (3536107 bytes in 0.012s) 13:24:52.200 detox[10566] i /Users/abanoubamin/Library/Android/sdk/platform-tools/adb -s emulator-19198 shell pm install -r -g -t /data/local/tmp/detox/Test.apk 13:24:52.463 detox[10566] i Success 13:24:52.478 detox[10566] i /Users/abanoubamin/Library/Android/sdk/platform-tools/adb -s emulator-19198 shell pm install -r -g -t /data/local/tmp/detox/Test.apk exited with code #0 13:24:52.481 detox[10566] B reverseTcpPort args: (8081) 13:24:52.481 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 reverse tcp:8081 tcp:8081 13:24:52.532 detox[10566] i 13:24:52.532 detox[10566] E reverseTcpPort 13:24:52.532 detox[10566] E installApp 13:24:52.533 detox[10566] B selectApp args: ("default") 13:24:52.533 detox[10566] B terminateApp args: () 13:24:52.533 detox[10566] B onBeforeTerminateApp args: ({"deviceId":"emulator-19198","bundleId":"de.angelroute.fisherman"}) 13:24:52.533 detox[10566] E onBeforeTerminateApp 13:24:52.533 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 shell "am force-stop de.angelroute.fisherman" 13:24:52.623 detox[10566] i 13:24:52.623 detox[10566] B onTerminateApp args: ({"deviceId":"emulator-19198","bundleId":"de.angelroute.fisherman"}) 13:24:52.623 detox[10566] E onTerminateApp 13:24:52.623 detox[10566] E terminateApp 13:24:52.623 detox[10566] E selectApp 13:24:52.624 detox[10566] E set up environment 13:24:52.957 detox[10566] i login.test.js is assigned to emulator-19198 (Pixel_3a_API_31_arm64-v8a) 13:24:52.958 detox[10566] B run the tests 13:24:52.958 detox[10566] B onRunDescribeStart args: ({"name":"ROOT_DESCRIBE_BLOCK"}) 13:24:52.959 detox[10566] E onRunDescribeStart 13:24:52.960 detox[10566] B Login 13:24:52.960 detox[10566] B onRunDescribeStart args: ({"name":"Login"}) 13:24:52.960 detox[10566] E onRunDescribeStart 13:24:52.961 detox[10566] B beforeAll 13:24:52.969 detox[10566] B launchApp args: () 13:24:52.969 detox[10566] B terminateApp args: ("de.angelroute.fisherman") 13:24:52.969 detox[10566] B onBeforeTerminateApp args: ({"deviceId":"emulator-19198","bundleId":"de.angelroute.fisherman"}) 13:24:52.970 detox[10566] E onBeforeTerminateApp 13:24:52.970 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 shell "am force-stop de.angelroute.fisherman" 13:24:53.057 detox[10566] i 13:24:53.058 detox[10566] B onTerminateApp args: ({"deviceId":"emulator-19198","bundleId":"de.angelroute.fisherman"}) 13:24:53.058 detox[10566] E onTerminateApp 13:24:53.058 detox[10566] E terminateApp 13:24:53.060 detox[10566] B onBeforeLaunchApp args: ({"deviceId":"emulator-19198","bundleId":"de.angelroute.fisherman","launchArgs":{"detoxServer":"ws://localhost:65520","detoxSessionId":"6d2e7bb5-06a0-e368-d43b-3a40687b34c5"}}) 13:24:53.061 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 shell "date +\"%m-%d %T.000\"" 13:24:53.135 detox[10566] i 09-23 00:14:55.000 13:24:53.135 detox[10566] E onBeforeLaunchApp 13:24:53.136 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 reverse tcp:65520 tcp:65520 13:24:53.176 detox[10566] i 65520 13:24:53.177 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 shell "pm list instrumentation" 13:24:53.228 detox[10566] i instrumentation:de.angelroute.fisherman.test/androidx.test.runner.AndroidJUnitRunner (target=de.angelroute.fisherman) 13:24:53.248 detox[10566] i /Users/abanoubamin/Library/Android/sdk/platform-tools/adb -s emulator-19198 shell am instrument -w -r -e detoxServer ws://localhost:65520 -e detoxSessionId 6d2e7bb5-06a0-e368-d43b-3a40687b34c5 -e debug false de.angelroute.fisherman.test/androidx.test.runner.AndroidJUnitRunner 13:24:53.751 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 shell "ps | grep \"de\.angelroute\.fisherman$\"" 13:24:53.890 detox[10566] i u0_a153 29684 289 14774560 113548 0 0 R de.angelroute.fisherman 13:24:53.891 detox[10566] B onLaunchApp args: ({"deviceId":"emulator-19198","bundleId":"de.angelroute.fisherman","launchArgs":{"detoxServer":"ws://localhost:65520","detoxSessionId":"6d2e7bb5-06a0-e368-d43b-3a40687b34c5"},"pid":29684}) 13:24:53.892 detox[10566] i starting ADBLogcatRecording 13:24:53.904 detox[10566] i /Users/abanoubamin/Library/Android/sdk/platform-tools/adb -s emulator-19198 shell "logcat -T \"09-23 00:14:55.000\" --pid=29684 -f /sdcard/132448185_0.log" 13:24:53.904 detox[10566] E onLaunchApp 13:24:54.206 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 shell du /sdcard/132448185_0.log 13:24:54.278 detox[10566] i 4 /sdcard/132448185_0.log 13:24:55.432 detox[10566] i INSTRUMENTATION_STATUS: class=de.angelroute.fisherman.DetoxTest INSTRUMENTATION_STATUS: current=1 INSTRUMENTATION_STATUS: id=AndroidJUnitRunner INSTRUMENTATION_STATUS: numtests=1 INSTRUMENTATION_STATUS: stream= de.angelroute.fisherman.DetoxTest: INSTRUMENTATION_STATUS: test=runDetoxTests INSTRUMENTATION_STATUS_CODE: 1 13:24:56.165 detox[10563] B connection :65520<->:49264 13:24:56.221 detox[10563] i get data: {"messageId":0,"type":"login","params":{"role":"app","sessionId":"6d2e7bb5-06a0-e368-d43b-3a40687b34c5"}} 13:24:56.222 detox[10563] i send data: { "messageId": 0, "type": "loginSuccess", "params": { "testerConnected": true, "appConnected": true } } 13:24:56.223 detox[10563] i app joined session 6d2e7bb5-06a0-e368-d43b-3a40687b34c5 13:24:56.223 detox[10563] i send data: { "type": "appConnected" } 13:24:56.229 detox[10566] i get message data: {"type":"appConnected"} 13:24:56.245 detox[10566] i send message data: {"type":"isReady","params":{},"messageId":-1000} 13:24:56.246 detox[10563] i get data: {"type":"isReady","params":{},"messageId":-1000} 13:24:56.246 detox[10563] i send data: { "type": "isReady", "params": {}, "messageId": -1000 } 13:25:06.241 detox[10566] i send message data: {"type":"currentStatus","params":{},"messageId":1} 13:25:06.246 detox[10563] i get data: {"type":"currentStatus","params":{},"messageId":1} 13:25:06.247 detox[10563] i send data: { "type": "currentStatus", "params": {}, "messageId": 1 } 13:25:06.253 detox[10563] i get data: {"messageId":1,"type":"currentStatusResult","params":{"status":{"app_status":"busy","busy_resources":[{"name":"bg","description":{"reason":"native async-tasks"}}]}}} 13:25:06.253 detox[10563] i send data: { "messageId": 1, "type": "currentStatusResult", "params": { "status": { "app_status": "busy", "busy_resources": [ { "name": "bg", "description": { "reason": "native async-tasks" } } ] } } } 13:25:06.254 detox[10566] i get message data: {"messageId":1,"type":"currentStatusResult","params":{"status":{"app_status":"busy","busy_resources":[{"name":"bg","description":{"reason":"native async-tasks"}}]}}} 13:25:06.259 detox[10566] i The app is busy with the following tasks: • Background work taking place in native async-tasks. 13:25:11.489 detox[10563] i get data: {"messageId":-1000,"type":"ready","params":{}} 13:25:11.489 detox[10563] i send data: { "messageId": -1000, "type": "ready", "params": {} } 13:25:11.489 detox[10563] i get data: {"messageId":-1000,"type":"ready","params":{}} 13:25:11.489 detox[10563] i send data: { "messageId": -1000, "type": "ready", "params": {} } 13:25:11.489 detox[10566] i get message data: {"messageId":-1000,"type":"ready","params":{}} 13:25:11.491 detox[10566] B onAppReady args: ({"deviceId":"emulator-19198","bundleId":"de.angelroute.fisherman","pid":29684}) 13:25:11.491 detox[10566] E onAppReady 13:25:11.491 detox[10566] E launchApp 13:25:11.492 detox[10566] E beforeAll 13:25:11.493 detox[10566] B should show login button after tap 13:25:11.493 detox[10566] i Login: should show login button after tap 13:25:11.494 detox[10566] B onTestStart args: ({"title":"should show login button after tap","fullName":"Login should show login button after tap","status":"running","invocations":1}) 13:25:11.495 detox[10566] i stopping ADBLogcatRecording 13:25:11.496 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 shell "date +\"%m-%d %T.000\"" 13:25:11.540 detox[10566] i get message data: {"messageId":-1000,"type":"ready","params":{}} 13:25:11.599 detox[10566] i 09-23 00:15:13.000 13:25:11.601 detox[10566] i sending SIGINT to: /Users/abanoubamin/Library/Android/sdk/platform-tools/adb -s emulator-19198 shell logcat -T "09-23 00:14:55.000" --pid=29684 -f /sdcard/132448185_0.log 13:25:11.603 detox[10566] i /Users/abanoubamin/Library/Android/sdk/platform-tools/adb -s emulator-19198 shell "logcat -T \"09-23 00:14:55.000\" --pid=29684 -f /sdcard/132448185_0.log" terminated with SIGINT 13:25:11.604 detox[10566] i starting ADBLogcatRecording 13:25:11.614 detox[10566] i /Users/abanoubamin/Library/Android/sdk/platform-tools/adb -s emulator-19198 shell "logcat -T \"09-23 00:15:13.000\" --pid=29684 -f /sdcard/132448185_1.log" 13:25:11.615 detox[10566] E onTestStart 13:25:11.615 detox[10566] B beforeEach 13:25:11.616 detox[10566] E beforeEach 13:25:11.616 detox[10566] B beforeEach 13:25:11.620 detox[10566] B reloadReactNative args: () 13:25:11.621 detox[10566] i send message data: {"type":"reactNativeReload","params":{},"messageId":-1000} 13:25:11.622 detox[10563] i get data: {"type":"reactNativeReload","params":{},"messageId":-1000} 13:25:11.622 detox[10563] i send data: { "type": "reactNativeReload", "params": {}, "messageId": -1000 } 13:25:11.916 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 shell du /sdcard/132448185_1.log 13:25:12.004 detox[10566] i 4 /sdcard/132448185_1.log 13:25:12.034 detox[10563] i get data: {"messageId":-1000,"type":"ready","params":{}} 13:25:12.034 detox[10563] i send data: { "messageId": -1000, "type": "ready", "params": {} } 13:25:12.035 detox[10566] i get message data: {"messageId":-1000,"type":"ready","params":{}} 13:25:12.035 detox[10566] E reloadReactNative 13:25:12.035 detox[10566] E beforeEach 13:25:12.036 detox[10566] B test_fn 13:25:12.042 detox[10566] i send message data: {"type":"invoke","params":{"target":{"type":"Class","value":"com.wix.detox.espresso.EspressoDetox"},"method":"perform","args":[{"type":"Invocation","value":{"target":{"type":"Class","value":"com.wix.detox.espresso.DetoxMatcher"},"method":"matcherForTestId","args":["email-input",{"type":"boolean","value":false}]}},{"type":"Invocation","value":{"target":{"type":"Class","value":"com.wix.detox.espresso.DetoxViewActions"},"method":"typeText","args":["test@test.com"]}}]},"messageId":2} 13:25:12.044 detox[10563] i get data: {"type":"invoke","params":{"target":{"type":"Class","value":"com.wix.detox.espresso.EspressoDetox"},"method":"perform","args":[{"type":"Invocation","value":{"target":{"type":"Class","value":"com.wix.detox.espresso.DetoxMatcher"},"method":"matcherForTestId","args":["email-input",{"type":"boolean","value":false}]}},{"type":"Invocation","value":{"target":{"type":"Class","value":"com.wix.detox.espresso.DetoxViewActions"},"method":"typeText","args":["test@test.com"]}}]},"messageId":2} 13:25:12.044 detox[10563] i send data: { "type": "invoke", "params": { "target": { "type": "Class", "value": "com.wix.detox.espresso.EspressoDetox" }, "method": "perform", "args": [ { "type": "Invocation", "value": { "target": { "type": "Class", "value": "com.wix.detox.espresso.DetoxMatcher" }, "method": "matcherForTestId", "args": [ "email-input", { "type": "boolean", "value": false } ] } }, { "type": "Invocation", "value": { "target": { "type": "Class", "value": "com.wix.detox.espresso.DetoxViewActions" }, "method": "typeText", "args": [ "test@test.com" ] } } ] }, "messageId": 2 } 13:25:12.047 detox[10566] B type input text: "test@test.com" data: { "target": { "type": "Class", "value": "com.wix.detox.espresso.EspressoDetox" }, "method": "perform", "args": [ { "type": "Invocation", "value": { "target": { "type": "Class", "value": "com.wix.detox.espresso.DetoxMatcher" }, "method": "matcherForTestId", "args": [ "email-input", { "type": "boolean", "value": false } ] } }, { "type": "Invocation", "value": { "target": { "type": "Class", "value": "com.wix.detox.espresso.DetoxViewActions" }, "method": "typeText", "args": [ "test@test.com" ] } } ] } 13:25:13.379 detox[10563] i get data: {"messageId":2,"type":"testFailed","params":{"details":"No views in hierarchy found matching: (view.getTag() is \"email-input\" and view has effective visibility )\n","viewHierarchy":"+>DecorView{id=-1, visibility=VISIBLE, width=1080, height=2220, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params={(0,0)(fillxfill) sim={adjust=resize} ty=BASE_APPLICATION fmt=TRANSLUCENT wanim=0x10302fe\n fl=LAYOUT_IN_SCREEN FORCE_NOT_FULLSCREEN LAYOUT_INSET_DECOR SPLIT_TOUCH HARDWARE_ACCELERATED DRAWS_SYSTEM_BAR_BACKGROUNDS\n pfl=NO_MOVE_ANIMATION FORCE_DRAW_STATUS_BAR_BACKGROUND FIT_INSETS_CONTROLLED\n bhv=DEFAULT\n fitSides=}, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=3} \n|\n+->LinearLayout{id=-1, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@7ef7986, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} \n|\n+-->ViewStub{id=16908720, res-name=action_mode_bar_stub, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@ba1c247, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0} \n|\n+-->FrameLayout{id=-1, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@7017b9d, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+--->FitWindowsLinearLayout{id=2131361855, res-name=action_bar_root, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@d80d9e0, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} \n|\n+---->ViewStubCompat{id=2131361867, res-name=action_mode_bar_stub, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@57f3499, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0} \n|\n+---->ContentFrameLayout{id=16908290, res-name=content, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@86335e, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+----->ReactRootView{id=11, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@8858155, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} \n|\n+------>RNGestureHandlerRootView{id=209, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@afe276a, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+------->SafeAreaProvider{id=207, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@435445b, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+-------->ReactViewGroup{id=205, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@ee404f8, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} \n|\n+--------->ScreenContainer{id=199, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@f4f5036, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+---------->ScreensFrameLayout{id=-1, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@fd078a4, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+----------->Screen{id=197, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@615e3d3, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} \n|\n+------------>ReactViewGroup{id=39, visibility=VISIBLE, width=1080, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@aee7b10, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=0} \n|\n+------------>ReactViewGroup{id=195, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@f697609, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+------------->ReactViewGroup{id=193, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@5d4300e, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+-------------->ReactViewGroup{id=189, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@ad0ea2f, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+--------------->ReactViewGroup{id=187, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@1a8383c, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} \n|\n+---------------->ReactScrollView{id=177, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@1a73f1a, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+----------------->ReactViewGroup{id=175, visibility=VISIBLE, width=928, height=1545, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@18bfa4b, tag=null, root-is-layout-requested=false, has-input-connection=false, x=76.0, y=209.0, child-count=12} \n|\n+------------------>ReactTextView{id=47, visibility=VISIBLE, width=928, height=103, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@44cdd41, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, text=Anmelden, input-type=0, ime-target=false, has-links=false} \n|\n+------------------>ReactViewGroup{id=49, visibility=VISIBLE, width=928, height=159, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@16a32e6, tag=text-input-outline, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=329.0, child-count=0} \n|\n+------------------>ReactViewGroup{id=69, visibility=VISIBLE, width=928, height=176, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@99df027, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=312.0, child-count=4} \n|\n+------------------->ReactViewGroup{id=53, visibility=VISIBLE, width=33, height=5, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@c9552d4, tag=null, root-is-layout-requested=false, has-input-connection=false, x=28.0, y=17.0, child-count=0} \n|\n+------------------->ReactTextView{id=57, visibility=VISIBLE, width=269, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@ec90c7d, tag=null, root-is-layout-requested=false, has-input-connection=false, x=50.0, y=74.0, text=E-Mail-Adresse, input-type=0, ime-target=false, has-links=false} \n|\n+------------------->ReactTextView{id=63, visibility=VISIBLE, width=346, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@3169772, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=72.0, text=E-Mail-Adresse, input-type=0, ime-target=false, has-links=false} \n|\n+------------------->ReactTextView{id=67, visibility=VISIBLE, width=346, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@6ef67c3, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=72.0, text=E-Mail-Adresse, input-type=0, ime-target=false, has-links=false} \n|\n+------------------>ReactEditText{id=73, visibility=VISIBLE, width=928, height=154, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@95ec840, tag=text-input-outlined, root-is-layout-requested=false, has-input-connection=true, editor-info=[inputType=0x4001 imeOptions=0xc000006 privateImeOptions=null actionLabel=null actionId=0 initialSelStart=0 initialSelEnd=0 initialCapsMode=0x2000 hintText= label=null packageName=null autofillId=null fieldId=0 fieldName=null extras=Bundle[{android.support.text.emoji.emojiCompat_metadataVersion=7, android.support.text.emoji.emojiCompat_replaceAll=false}] hintLocales=null contentMimeTypes=null ], x=0.0, y=334.0, text=, hint=, input-type=16385, ime-target=false, has-links=false} \n|\n+------------------>ReactViewGroup{id=85, visibility=VISIBLE, width=928, height=159, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@fdef379, tag=text-input-outline, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=568.0, child-count=0} \n|\n+------------------>ReactViewGroup{id=105, visibility=VISIBLE, width=928, height=176, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@8b2b8be, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=551.0, child-count=4} \n|\n+------------------->ReactViewGroup{id=87, visibility=VISIBLE, width=33, height=5, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@956bd1f, tag=null, root-is-layout-requested=false, has-input-connection=false, x=28.0, y=17.0, child-count=0} \n|\n+------------------->ReactTextView{id=93, visibility=VISIBLE, width=170, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@c88286c, tag=null, root-is-layout-requested=false, has-input-connection=false, x=50.0, y=74.0, text=Passwort, input-type=0, ime-target=false, has-links=false} \n|\n+------------------->ReactTextView{id=97, visibility=VISIBLE, width=247, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@1d24e35, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=72.0, text=Passwort, input-type=0, ime-target=false, has-links=false} \n|\n+------------------->ReactTextView{id=103, visibility=VISIBLE, width=247, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@c5da2ca, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=72.0, text=Passwort, input-type=0, ime-target=false, has-links=false} \n|\n+------------------>ReactEditText{id=107, visibility=VISIBLE, width=807, height=154, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@db40c3b, tag=text-input-outlined, root-is-layout-requested=false, has-input-connection=true, editor-info=[inputType=0x4081 imeOptions=0xc000006 privateImeOptions=null actionLabel=null actionId=0 initialSelStart=0 initialSelEnd=0 initialCapsMode=0x2000 hintText= label=null packageName=null autofillId=null fieldId=0 fieldName=null extras=Bundle[{android.support.text.emoji.emojiCompat_metadataVersion=7, android.support.text.emoji.emojiCompat_replaceAll=false}] hintLocales=null contentMimeTypes=null ], x=0.0, y=573.0, text=, hint=, input-type=16513, ime-target=false, has-links=false} \n|\n+------------------>ReactViewGroup{id=119, visibility=VISIBLE, width=99, height=99, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@2055f58, tag=null, root-is-layout-requested=false, has-input-connection=false, x=813.0, y=598.0, child-count=1} \n|\n+------------------->ReactTextView{id=115, visibility=VISIBLE, width=76, height=77, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@56698b1, tag=null, root-is-layout-requested=false, has-input-connection=false, x=12.0, y=11.0, text=, input-type=0, ime-target=false, has-links=false} \n|\n+------------------>ReactViewGroup{id=145, visibility=VISIBLE, width=445, height=54, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@91b2196, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=790.0, child-count=2} \n|\n+------------------->ReactViewGroup{id=135, visibility=VISIBLE, width=49, height=49, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@4cd3117, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=3.0, child-count=0} \n|\n+------------------->ReactTextView{id=139, visibility=VISIBLE, width=352, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@f1d1904, tag=null, root-is-layout-requested=false, has-input-connection=false, x=93.0, y=0.0, text=Angemeldet bleiben, input-type=0, ime-target=false, has-links=false} \n|\n+------------------>ReactTextView{id=153, visibility=VISIBLE, width=461, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@a1b0eed, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=958.0, text=Du hast noch kein Konto? , input-type=0, ime-target=false, has-links=false} \n|\n+------------------>ReactViewGroup{id=159, visibility=VISIBLE, width=214, height=54, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@45fc122, tag=null, root-is-layout-requested=false, has-input-connection=false, x=461.0, y=953.0, child-count=1} \n|\n+------------------->ReactTextView{id=157, visibility=VISIBLE, width=214, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@be9c7b3, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, text=Registrieren, input-type=0, ime-target=false, has-links=false} \n|\n+------------------>ReactViewGroup{id=169, visibility=VISIBLE, width=950, height=115, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@4d4c170, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=1221.0, child-count=1} \n|\n+------------------->ReactTextView{id=167, visibility=VISIBLE, width=194, height=58, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@e26ace9, tag=null, root-is-layout-requested=false, has-input-connection=false, x=378.0, y=28.0, text=Anmelden, input-type=0, ime-target=false, has-links=false} \n|\n+---------------->ReactViewGroup{id=183, visibility=VISIBLE, width=1080, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@45ccd6e, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=0} \n|\n+--------->ReactViewGroup{id=203, visibility=VISIBLE, width=1080, height=220, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@32f2c0f, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=0} \n|\n+------>ReactViewGroup{id=217, visibility=VISIBLE, width=1080, height=165, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@d1c849c, tag=toastAnimatedContainer, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=-330.0, child-count=1} \n|\n+------->ReactViewGroup{id=215, visibility=VISIBLE, width=935, height=165, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@2342ea5, tag=toastTouchableContainer, root-is-layout-requested=false, has-input-connection=false, x=73.0, y=0.0, child-count=1} \n|\n+-------->ReactViewGroup{id=213, visibility=VISIBLE, width=922, height=165, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@f0c527a, tag=toastContentContainer, root-is-layout-requested=false, has-input-connection=false, x=14.0, y=0.0, child-count=0} \n|\n+->View{id=16908336, res-name=navigationBarBackground, visibility=VISIBLE, width=1080, height=132, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@dbc7a2b, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=2088.0} \n|\n+->View{id=16908335, res-name=statusBarBackground, visibility=INVISIBLE, width=1080, height=66, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@ebb4e88, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}"}} 13:25:13.379 detox[10563] i send data: { "messageId": 2, "type": "testFailed", "params": { "details": "No views in hierarchy found matching: (view.getTag() is \"email-input\" and view has effective visibility )\n", "viewHierarchy": "+>DecorView{id=-1, visibility=VISIBLE, width=1080, height=2220, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params={(0,0)(fillxfill) sim={adjust=resize} ty=BASE_APPLICATION fmt=TRANSLUCENT wanim=0x10302fe\n fl=LAYOUT_IN_SCREEN FORCE_NOT_FULLSCREEN LAYOUT_INSET_DECOR SPLIT_TOUCH HARDWARE_ACCELERATED DRAWS_SYSTEM_BAR_BACKGROUNDS\n pfl=NO_MOVE_ANIMATION FORCE_DRAW_STATUS_BAR_BACKGROUND FIT_INSETS_CONTROLLED\n bhv=DEFAULT\n fitSides=}, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=3} \n|\n+->LinearLayout{id=-1, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@7ef7986, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} \n|\n+-->ViewStub{id=16908720, res-name=action_mode_bar_stub, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@ba1c247, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0} \n|\n+-->FrameLayout{id=-1, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@7017b9d, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+--->FitWindowsLinearLayout{id=2131361855, res-name=action_bar_root, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@d80d9e0, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} \n|\n+---->ViewStubCompat{id=2131361867, res-name=action_mode_bar_stub, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@57f3499, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0} \n|\n+---->ContentFrameLayout{id=16908290, res-name=content, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@86335e, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+----->ReactRootView{id=11, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@8858155, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} \n|\n+------>RNGestureHandlerRootView{id=209, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@afe276a, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+------->SafeAreaProvider{id=207, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@435445b, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+-------->ReactViewGroup{id=205, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@ee404f8, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} \n|\n+--------->ScreenContainer{id=199, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@f4f5036, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+---------->ScreensFrameLayout{id=-1, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@fd078a4, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+----------->Screen{id=197, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@615e3d3, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} \n|\n+------------>ReactViewGroup{id=39, visibility=VISIBLE, width=1080, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@aee7b10, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=0} \n|\n+------------>ReactViewGroup{id=195, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@f697609, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+------------->ReactViewGroup{id=193, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@5d4300e, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+-------------->ReactViewGroup{id=189, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@ad0ea2f, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+--------------->ReactViewGroup{id=187, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@1a8383c, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} \n|\n+---------------->ReactScrollView{id=177, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@1a73f1a, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+----------------->ReactViewGroup{id=175, visibility=VISIBLE, width=928, height=1545, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@18bfa4b, tag=null, root-is-layout-requested=false, has-input-connection=false, x=76.0, y=209.0, child-count=12} \n|\n+------------------>ReactTextView{id=47, visibility=VISIBLE, width=928, height=103, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@44cdd41, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, text=Anmelden, input-type=0, ime-target=false, has-links=false} \n|\n+------------------>ReactViewGroup{id=49, visibility=VISIBLE, width=928, height=159, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@16a32e6, tag=text-input-outline, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=329.0, child-count=0} \n|\n+------------------>ReactViewGroup{id=69, visibility=VISIBLE, width=928, height=176, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@99df027, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=312.0, child-count=4} \n|\n+------------------->ReactViewGroup{id=53, visibility=VISIBLE, width=33, height=5, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@c9552d4, tag=null, root-is-layout-requested=false, has-input-connection=false, x=28.0, y=17.0, child-count=0} \n|\n+------------------->ReactTextView{id=57, visibility=VISIBLE, width=269, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@ec90c7d, tag=null, root-is-layout-requested=false, has-input-connection=false, x=50.0, y=74.0, text=E-Mail-Adresse, input-type=0, ime-target=false, has-links=false} \n|\n+------------------->ReactTextView{id=63, visibility=VISIBLE, width=346, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@3169772, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=72.0, text=E-Mail-Adresse, input-type=0, ime-target=false, has-links=false} \n|\n+------------------->ReactTextView{id=67, visibility=VISIBLE, width=346, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@6ef67c3, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=72.0, text=E-Mail-Adresse, input-type=0, ime-target=false, has-links=false} \n|\n+------------------>ReactEditText{id=73, visibility=VISIBLE, width=928, height=154, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@95ec840, tag=text-input-outlined, root-is-layout-requested=false, has-input-connection=true, editor-info=[inputType=0x4001 imeOptions=0xc000006 privateImeOptions=null actionLabel=null actionId=0 initialSelStart=0 initialSelEnd=0 initialCapsMode=0x2000 hintText= label=null packageName=null autofillId=null fieldId=0 fieldName=null extras=Bundle[{android.support.text.emoji.emojiCompat_metadataVersion=7, android.support.text.emoji.emojiCompat_replaceAll=false}] hintLocales=null contentMimeTypes=null ], x=0.0, y=334.0, text=, hint=, input-type=16385, ime-target=false, has-links=false} \n|\n+------------------>ReactViewGroup{id=85, visibility=VISIBLE, width=928, height=159, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@fdef379, tag=text-input-outline, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=568.0, child-count=0} \n|\n+------------------>ReactViewGroup{id=105, visibility=VISIBLE, width=928, height=176, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@8b2b8be, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=551.0, child-count=4} \n|\n+------------------->ReactViewGroup{id=87, visibility=VISIBLE, width=33, height=5, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@956bd1f, tag=null, root-is-layout-requested=false, has-input-connection=false, x=28.0, y=17.0, child-count=0} \n|\n+------------------->ReactTextView{id=93, visibility=VISIBLE, width=170, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@c88286c, tag=null, root-is-layout-requested=false, has-input-connection=false, x=50.0, y=74.0, text=Passwort, input-type=0, ime-target=false, has-links=false} \n|\n+------------------->ReactTextView{id=97, visibility=VISIBLE, width=247, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@1d24e35, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=72.0, text=Passwort, input-type=0, ime-target=false, has-links=false} \n|\n+------------------->ReactTextView{id=103, visibility=VISIBLE, width=247, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@c5da2ca, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=72.0, text=Passwort, input-type=0, ime-target=false, has-links=false} \n|\n+------------------>ReactEditText{id=107, visibility=VISIBLE, width=807, height=154, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@db40c3b, tag=text-input-outlined, root-is-layout-requested=false, has-input-connection=true, editor-info=[inputType=0x4081 imeOptions=0xc000006 privateImeOptions=null actionLabel=null actionId=0 initialSelStart=0 initialSelEnd=0 initialCapsMode=0x2000 hintText= label=null packageName=null autofillId=null fieldId=0 fieldName=null extras=Bundle[{android.support.text.emoji.emojiCompat_metadataVersion=7, android.support.text.emoji.emojiCompat_replaceAll=false}] hintLocales=null contentMimeTypes=null ], x=0.0, y=573.0, text=, hint=, input-type=16513, ime-target=false, has-links=false} \n|\n+------------------>ReactViewGroup{id=119, visibility=VISIBLE, width=99, height=99, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@2055f58, tag=null, root-is-layout-requested=false, has-input-connection=false, x=813.0, y=598.0, child-count=1} \n|\n+------------------->ReactTextView{id=115, visibility=VISIBLE, width=76, height=77, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@56698b1, tag=null, root-is-layout-requested=false, has-input-connection=false, x=12.0, y=11.0, text=, input-type=0, ime-target=false, has-links=false} \n|\n+------------------>ReactViewGroup{id=145, visibility=VISIBLE, width=445, height=54, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@91b2196, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=790.0, child-count=2} \n|\n+------------------->ReactViewGroup{id=135, visibility=VISIBLE, width=49, height=49, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@4cd3117, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=3.0, child-count=0} \n|\n+------------------->ReactTextView{id=139, visibility=VISIBLE, width=352, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@f1d1904, tag=null, root-is-layout-requested=false, has-input-connection=false, x=93.0, y=0.0, text=Angemeldet bleiben, input-type=0, ime-target=false, has-links=false} \n|\n+------------------>ReactTextView{id=153, visibility=VISIBLE, width=461, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@a1b0eed, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=958.0, text=Du hast noch kein Konto? , input-type=0, ime-target=false, has-links=false} \n|\n+------------------>ReactViewGroup{id=159, visibility=VISIBLE, width=214, height=54, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@45fc122, tag=null, root-is-layout-requested=false, has-input-connection=false, x=461.0, y=953.0, child-count=1} \n|\n+------------------->ReactTextView{id=157, visibility=VISIBLE, width=214, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@be9c7b3, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, text=Registrieren, input-type=0, ime-target=false, has-links=false} \n|\n+------------------>ReactViewGroup{id=169, visibility=VISIBLE, width=950, height=115, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@4d4c170, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=1221.0, child-count=1} \n|\n+------------------->ReactTextView{id=167, visibility=VISIBLE, width=194, height=58, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@e26ace9, tag=null, root-is-layout-requested=false, has-input-connection=false, x=378.0, y=28.0, text=Anmelden, input-type=0, ime-target=false, has-links=false} \n|\n+---------------->ReactViewGroup{id=183, visibility=VISIBLE, width=1080, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@45ccd6e, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=0} \n|\n+--------->ReactViewGroup{id=203, visibility=VISIBLE, width=1080, height=220, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@32f2c0f, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=0} \n|\n+------>ReactViewGroup{id=217, visibility=VISIBLE, width=1080, height=165, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@d1c849c, tag=toastAnimatedContainer, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=-330.0, child-count=1} \n|\n+------->ReactViewGroup{id=215, visibility=VISIBLE, width=935, height=165, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@2342ea5, tag=toastTouchableContainer, root-is-layout-requested=false, has-input-connection=false, x=73.0, y=0.0, child-count=1} \n|\n+-------->ReactViewGroup{id=213, visibility=VISIBLE, width=922, height=165, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@f0c527a, tag=toastContentContainer, root-is-layout-requested=false, has-input-connection=false, x=14.0, y=0.0, child-count=0} \n|\n+->View{id=16908336, res-name=navigationBarBackground, visibility=VISIBLE, width=1080, height=132, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@dbc7a2b, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=2088.0} \n|\n+->View{id=16908335, res-name=statusBarBackground, visibility=INVISIBLE, width=1080, height=66, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@ebb4e88, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}" } } 13:25:13.387 detox[10566] i get message data: {"messageId":2,"type":"testFailed","params":{"details":"No views in hierarchy found matching: (view.getTag() is \"email-input\" and view has effective visibility )\n","viewHierarchy":"+>DecorView{id=-1, visibility=VISIBLE, width=1080, height=2220, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params={(0,0)(fillxfill) sim={adjust=resize} ty=BASE_APPLICATION fmt=TRANSLUCENT wanim=0x10302fe\n fl=LAYOUT_IN_SCREEN FORCE_NOT_FULLSCREEN LAYOUT_INSET_DECOR SPLIT_TOUCH HARDWARE_ACCELERATED DRAWS_SYSTEM_BAR_BACKGROUNDS\n pfl=NO_MOVE_ANIMATION FORCE_DRAW_STATUS_BAR_BACKGROUND FIT_INSETS_CONTROLLED\n bhv=DEFAULT\n fitSides=}, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=3} \n|\n+->LinearLayout{id=-1, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@7ef7986, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} \n|\n+-->ViewStub{id=16908720, res-name=action_mode_bar_stub, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@ba1c247, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0} \n|\n+-->FrameLayout{id=-1, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@7017b9d, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+--->FitWindowsLinearLayout{id=2131361855, res-name=action_bar_root, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@d80d9e0, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} \n|\n+---->ViewStubCompat{id=2131361867, res-name=action_mode_bar_stub, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@57f3499, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0} \n|\n+---->ContentFrameLayout{id=16908290, res-name=content, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@86335e, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+----->ReactRootView{id=11, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@8858155, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} \n|\n+------>RNGestureHandlerRootView{id=209, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@afe276a, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+------->SafeAreaProvider{id=207, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@435445b, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+-------->ReactViewGroup{id=205, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@ee404f8, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} \n|\n+--------->ScreenContainer{id=199, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@f4f5036, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+---------->ScreensFrameLayout{id=-1, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@fd078a4, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+----------->Screen{id=197, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@615e3d3, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} \n|\n+------------>ReactViewGroup{id=39, visibility=VISIBLE, width=1080, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@aee7b10, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=0} \n|\n+------------>ReactViewGroup{id=195, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@f697609, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+------------->ReactViewGroup{id=193, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@5d4300e, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+-------------->ReactViewGroup{id=189, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@ad0ea2f, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+--------------->ReactViewGroup{id=187, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@1a8383c, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} \n|\n+---------------->ReactScrollView{id=177, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@1a73f1a, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} \n|\n+----------------->ReactViewGroup{id=175, visibility=VISIBLE, width=928, height=1545, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@18bfa4b, tag=null, root-is-layout-requested=false, has-input-connection=false, x=76.0, y=209.0, child-count=12} \n|\n+------------------>ReactTextView{id=47, visibility=VISIBLE, width=928, height=103, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@44cdd41, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, text=Anmelden, input-type=0, ime-target=false, has-links=false} \n|\n+------------------>ReactViewGroup{id=49, visibility=VISIBLE, width=928, height=159, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@16a32e6, tag=text-input-outline, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=329.0, child-count=0} \n|\n+------------------>ReactViewGroup{id=69, visibility=VISIBLE, width=928, height=176, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@99df027, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=312.0, child-count=4} \n|\n+------------------->ReactViewGroup{id=53, visibility=VISIBLE, width=33, height=5, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@c9552d4, tag=null, root-is-layout-requested=false, has-input-connection=false, x=28.0, y=17.0, child-count=0} \n|\n+------------------->ReactTextView{id=57, visibility=VISIBLE, width=269, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@ec90c7d, tag=null, root-is-layout-requested=false, has-input-connection=false, x=50.0, y=74.0, text=E-Mail-Adresse, input-type=0, ime-target=false, has-links=false} \n|\n+------------------->ReactTextView{id=63, visibility=VISIBLE, width=346, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@3169772, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=72.0, text=E-Mail-Adresse, input-type=0, ime-target=false, has-links=false} \n|\n+------------------->ReactTextView{id=67, visibility=VISIBLE, width=346, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@6ef67c3, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=72.0, text=E-Mail-Adresse, input-type=0, ime-target=false, has-links=false} \n|\n+------------------>ReactEditText{id=73, visibility=VISIBLE, width=928, height=154, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@95ec840, tag=text-input-outlined, root-is-layout-requested=false, has-input-connection=true, editor-info=[inputType=0x4001 imeOptions=0xc000006 privateImeOptions=null actionLabel=null actionId=0 initialSelStart=0 initialSelEnd=0 initialCapsMode=0x2000 hintText= label=null packageName=null autofillId=null fieldId=0 fieldName=null extras=Bundle[{android.support.text.emoji.emojiCompat_metadataVersion=7, android.support.text.emoji.emojiCompat_replaceAll=false}] hintLocales=null contentMimeTypes=null ], x=0.0, y=334.0, text=, hint=, input-type=16385, ime-target=false, has-links=false} \n|\n+------------------>ReactViewGroup{id=85, visibility=VISIBLE, width=928, height=159, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@fdef379, tag=text-input-outline, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=568.0, child-count=0} \n|\n+------------------>ReactViewGroup{id=105, visibility=VISIBLE, width=928, height=176, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@8b2b8be, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=551.0, child-count=4} \n|\n+------------------->ReactViewGroup{id=87, visibility=VISIBLE, width=33, height=5, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@956bd1f, tag=null, root-is-layout-requested=false, has-input-connection=false, x=28.0, y=17.0, child-count=0} \n|\n+------------------->ReactTextView{id=93, visibility=VISIBLE, width=170, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@c88286c, tag=null, root-is-layout-requested=false, has-input-connection=false, x=50.0, y=74.0, text=Passwort, input-type=0, ime-target=false, has-links=false} \n|\n+------------------->ReactTextView{id=97, visibility=VISIBLE, width=247, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@1d24e35, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=72.0, text=Passwort, input-type=0, ime-target=false, has-links=false} \n|\n+------------------->ReactTextView{id=103, visibility=VISIBLE, width=247, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@c5da2ca, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=72.0, text=Passwort, input-type=0, ime-target=false, has-links=false} \n|\n+------------------>ReactEditText{id=107, visibility=VISIBLE, width=807, height=154, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@db40c3b, tag=text-input-outlined, root-is-layout-requested=false, has-input-connection=true, editor-info=[inputType=0x4081 imeOptions=0xc000006 privateImeOptions=null actionLabel=null actionId=0 initialSelStart=0 initialSelEnd=0 initialCapsMode=0x2000 hintText= label=null packageName=null autofillId=null fieldId=0 fieldName=null extras=Bundle[{android.support.text.emoji.emojiCompat_metadataVersion=7, android.support.text.emoji.emojiCompat_replaceAll=false}] hintLocales=null contentMimeTypes=null ], x=0.0, y=573.0, text=, hint=, input-type=16513, ime-target=false, has-links=false} \n|\n+------------------>ReactViewGroup{id=119, visibility=VISIBLE, width=99, height=99, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@2055f58, tag=null, root-is-layout-requested=false, has-input-connection=false, x=813.0, y=598.0, child-count=1} \n|\n+------------------->ReactTextView{id=115, visibility=VISIBLE, width=76, height=77, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@56698b1, tag=null, root-is-layout-requested=false, has-input-connection=false, x=12.0, y=11.0, text=, input-type=0, ime-target=false, has-links=false} \n|\n+------------------>ReactViewGroup{id=145, visibility=VISIBLE, width=445, height=54, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@91b2196, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=790.0, child-count=2} \n|\n+------------------->ReactViewGroup{id=135, visibility=VISIBLE, width=49, height=49, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@4cd3117, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=3.0, child-count=0} \n|\n+------------------->ReactTextView{id=139, visibility=VISIBLE, width=352, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@f1d1904, tag=null, root-is-layout-requested=false, has-input-connection=false, x=93.0, y=0.0, text=Angemeldet bleiben, input-type=0, ime-target=false, has-links=false} \n|\n+------------------>ReactTextView{id=153, visibility=VISIBLE, width=461, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@a1b0eed, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=958.0, text=Du hast noch kein Konto? , input-type=0, ime-target=false, has-links=false} \n|\n+------------------>ReactViewGroup{id=159, visibility=VISIBLE, width=214, height=54, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@45fc122, tag=null, root-is-layout-requested=false, has-input-connection=false, x=461.0, y=953.0, child-count=1} \n|\n+------------------->ReactTextView{id=157, visibility=VISIBLE, width=214, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@be9c7b3, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, text=Registrieren, input-type=0, ime-target=false, has-links=false} \n|\n+------------------>ReactViewGroup{id=169, visibility=VISIBLE, width=950, height=115, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@4d4c170, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=1221.0, child-count=1} \n|\n+------------------->ReactTextView{id=167, visibility=VISIBLE, width=194, height=58, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@e26ace9, tag=null, root-is-layout-requested=false, has-input-connection=false, x=378.0, y=28.0, text=Anmelden, input-type=0, ime-target=false, has-links=false} \n|\n+---------------->ReactViewGroup{id=183, visibility=VISIBLE, width=1080, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@45ccd6e, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=0} \n|\n+--------->ReactViewGroup{id=203, visibility=VISIBLE, width=1080, height=220, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@32f2c0f, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=0} \n|\n+------>ReactViewGroup{id=217, visibility=VISIBLE, width=1080, height=165, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@d1c849c, tag=toastAnimatedContainer, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=-330.0, child-count=1} \n|\n+------->ReactViewGroup{id=215, visibility=VISIBLE, width=935, height=165, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@2342ea5, tag=toastTouchableContainer, root-is-layout-requested=false, has-input-connection=false, x=73.0, y=0.0, child-count=1} \n|\n+-------->ReactViewGroup{id=213, visibility=VISIBLE, width=922, height=165, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@f0c527a, tag=toastContentContainer, root-is-layout-requested=false, has-input-connection=false, x=14.0, y=0.0, child-count=0} \n|\n+->View{id=16908336, res-name=navigationBarBackground, visibility=VISIBLE, width=1080, height=132, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@dbc7a2b, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=2088.0} \n|\n+->View{id=16908335, res-name=statusBarBackground, visibility=INVISIBLE, width=1080, height=66, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@ebb4e88, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}"}} 13:25:13.388 detox[10566] E type input text: "test@test.com" error: Test Failed: No views in hierarchy found matching: (view.getTag() is "email-input" and view has effective visibility ) HINT: To print view hierarchy on failed actions/matches, use log-level verbose or higher. 13:25:13.389 detox[10566] B onTestFnFailure args: ({"error":{"name":"DetoxRuntimeError"}}) 13:25:13.390 detox[10566] E onTestFnFailure 13:25:13.390 detox[10566] E test_fn error: Test Failed: No views in hierarchy found matching: (view.getTag() is "email-input" and view has effective visibility ) HINT: To print view hierarchy on failed actions/matches, use log-level verbose or higher. 13:25:13.392 detox[10566] B onTestDone args: ({"title":"should show login button after tap","fullName":"Login should show login button after tap","status":"failed","invocations":1,"timedOut":false}) 13:25:13.392 detox[10566] i stopping ADBLogcatRecording 13:25:13.392 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 shell "date +\"%m-%d %T.000\"" 13:25:13.456 detox[10566] i 09-23 00:15:15.000 13:25:13.457 detox[10566] i sending SIGINT to: /Users/abanoubamin/Library/Android/sdk/platform-tools/adb -s emulator-19198 shell logcat -T "09-23 00:15:13.000" --pid=29684 -f /sdcard/132448185_1.log 13:25:13.459 detox[10566] i /Users/abanoubamin/Library/Android/sdk/platform-tools/adb -s emulator-19198 shell "logcat -T \"09-23 00:15:13.000\" --pid=29684 -f /sdcard/132448185_1.log" terminated with SIGINT 13:25:13.463 detox[10566] E onTestDone 13:25:13.463 detox[10566] E should show login button after tap 13:25:13.464 detox[10566] i Login: should show login button after tap [FAIL] 13:25:13.471 detox[10566] B onRunDescribeFinish args: ({"name":"Login"}) 13:25:13.472 detox[10566] E onRunDescribeFinish 13:25:13.472 detox[10566] E Login 13:25:13.472 detox[10566] B onRunDescribeFinish args: ({"name":"ROOT_DESCRIBE_BLOCK"}) 13:25:13.472 detox[10566] E onRunDescribeFinish 13:25:13.472 detox[10566] E run the tests 13:25:13.542 detox[10566] B tear down environment 13:25:13.542 detox[10566] B onBeforeCleanup args: () 13:25:13.544 detox[10566] i saving ADBLogcatRecording to: artifacts/android.emu.debug.2023-11-04 11-24-46Z/✗ Login should show login button after tap/device.log 13:25:13.544 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 pull "/sdcard/132448185_1.log" "artifacts/android.emu.debug.2023-11-04 11-24-46Z/✗ Login should show login button after tap/device.log" 13:25:13.616 detox[10566] i /sdcard/132448185_1.log: 1 file pulled, 0 skipped. 37.2 MB/s (68809 bytes in 0.002s) 13:25:13.616 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 shell "rm \"/sdcard/132448185_1.log\"" 13:25:13.681 detox[10566] i 13:25:13.683 detox[10566] i saving ADBLogcatRecording to: artifacts/android.emu.debug.2023-11-04 11-24-46Z/emulator-19198 2023-11-04 11-25-13Z.startup.log 13:25:13.683 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 pull "/sdcard/132448185_0.log" "artifacts/android.emu.debug.2023-11-04 11-24-46Z/emulator-19198 2023-11-04 11-25-13Z.startup.log" 13:25:13.725 detox[10566] i /sdcard/132448185_0.log: 1 file pulled, 0 skipped. 41.5 MB/s (57487 bytes in 0.001s) 13:25:13.725 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 shell "rm \"/sdcard/132448185_0.log\"" 13:25:13.798 detox[10566] i 13:25:13.800 detox[10566] i saving FileArtifact to: artifacts/android.emu.debug.2023-11-04 11-24-46Z/detox_pid_10566.json.log { append: true } 13:25:13.800 detox[10566] i saving FileArtifact to: artifacts/android.emu.debug.2023-11-04 11-24-46Z/detox_pid_10566.log { append: true } 13:25:13.800 detox[10566] E onBeforeCleanup 13:25:13.803 detox[10566] i send message data: {"type":"cleanup","params":{"stopRunner":false},"messageId":-49642} 13:25:13.805 detox[10563] i get data: {"type":"cleanup","params":{"stopRunner":false},"messageId":-49642} 13:25:13.805 detox[10563] i send data: { "type": "cleanup", "params": { "stopRunner": false }, "messageId": -49642 } 13:25:13.808 detox[10563] i get data: {"messageId":-49642,"type":"cleanupDone","params":{}} 13:25:13.808 detox[10563] i send data: { "messageId": -49642, "type": "cleanupDone", "params": {} } 13:25:13.809 detox[10566] i get message data: {"messageId":-49642,"type":"cleanupDone","params":{}} 13:25:13.815 detox[10563] i tester exited session 6d2e7bb5-06a0-e368-d43b-3a40687b34c5 13:25:13.816 detox[10563] i send data: { "type": "testerDisconnected", "messageId": -1 } 13:25:13.816 detox[10566] i sending SIGINT to: /Users/abanoubamin/Library/Android/sdk/platform-tools/adb -s emulator-19198 shell am instrument -w -r -e detoxServer ws://localhost:65520 -e detoxSessionId 6d2e7bb5-06a0-e368-d43b-3a40687b34c5 -e debug false de.angelroute.fisherman.test/androidx.test.runner.AndroidJUnitRunner 13:25:13.817 detox[10563] E connection :65520<->:65529 13:25:13.818 detox[10566] i /Users/abanoubamin/Library/Android/sdk/platform-tools/adb -s emulator-19198 shell am instrument -w -r -e detoxServer ws://localhost:65520 -e detoxSessionId 6d2e7bb5-06a0-e368-d43b-3a40687b34c5 -e debug false de.angelroute.fisherman.test/androidx.test.runner.AndroidJUnitRunner terminated with SIGINT 13:25:13.819 detox[10566] i "/Users/abanoubamin/Library/Android/sdk/platform-tools/adb" -s emulator-19198 reverse --remove tcp:65520 13:25:13.834 detox[10566] i dispatching event to primary-10563 /tmp/detox.primary-10563 : deallocateDevice , { deviceCookie: { id: 'emulator-19198', adbName: 'emulator-19198', name: 'emulator-19198 (Pixel_3a_API_31_arm64-v8a)' } } 13:25:13.836 detox[10563] i received event of : deallocateDevice { deviceCookie: { id: 'emulator-19198', adbName: 'emulator-19198', name: 'emulator-19198 (Pixel_3a_API_31_arm64-v8a)' } } 13:25:13.836 detox[10563] B free: emulator-19198 data: {} 13:25:13.843 detox[10563] E free: emulator-19198 13:25:13.843 detox[10563] i dispatching event to socket : deallocateDeviceDone {} 13:25:13.844 detox[10566] i ## received events ## 13:25:13.844 detox[10566] i detected event deallocateDeviceDone {} 13:25:13.844 detox[10566] E tear down environment 13:25:13.844 detox[10566] E e2e/login.test.js 13:25:13.861 detox[10566] i dispatching event to primary-10563 /tmp/detox.primary-10563 : reportTestResults , { testResults: [ { success: false, testFilePath: '/Users/abanoubamin/Desktop/Angelroute/FisherMan/e2e/login.test.js', testExecError: undefined, isPermanentFailure: false } ] } 13:25:13.864 detox[10563] i received event of : reportTestResults { testResults: [ { success: false, testFilePath: '/Users/abanoubamin/Desktop/Angelroute/FisherMan/e2e/login.test.js', isPermanentFailure: false } ] } 13:25:13.865 detox[10563] i dispatching event to socket : reportTestResultsDone { testResults: [ { success: false, testFilePath: '/Users/abanoubamin/Desktop/Angelroute/FisherMan/e2e/login.test.js', isPermanentFailure: false } ] } 13:25:13.866 detox[10563] i broadcasting event to all known sockets listening to /tmp/detox.primary-10563 : sessionStateUpdate { testResults: [ { success: false, testFilePath: '/Users/abanoubamin/Desktop/Angelroute/FisherMan/e2e/login.test.js', isPermanentFailure: false } ] } 13:25:13.866 detox[10566] i ## received events ## 13:25:13.867 detox[10566] i detected event reportTestResultsDone { testResults: [ { success: false, testFilePath: '/Users/abanoubamin/Desktop/Angelroute/FisherMan/e2e/login.test.js', isPermanentFailure: false } ] } 13:25:13.872 detox[10566] i connection closed primary-10563 /tmp/detox.primary-10563 0 tries remaining of 0 13:25:13.872 detox[10566] i secondary-10566 exceeded connection rety amount of or stopRetrying flag set. 13:25:13.873 detox[10566] i 13:25:13.874 detox[10563] i socket disconnected secondary-10566 13:25:13.972 detox[10563] E Command failed with exit code = 1: jest --config e2e/jest.config.js 13:25:13.975 detox[10563] B cleanup args: () 13:25:13.978 detox[10563] E cleanup 13:25:13.980 detox[10563] i Detox server has been closed gracefully 13:25:13.981 detox[10563] i app exited session 6d2e7bb5-06a0-e368-d43b-3a40687b34c5 13:25:13.982 detox[10563] E connection :65520<->:49264 13:25:13.983 detox[10563] E node_modules/.bin/detox test --configuration android.emu.debug --record-logs all ```

Device logs

Device logs ``` --------- beginning of main 09-23 00:15:13.524 29684 29684 I Detox : Wait is over: App is now idle! 09-23 00:15:13.524 29684 29761 I DetoxWSClient: Sending out action 'ready' (ID #-1000) 09-23 00:15:13.524 29684 29761 I DetoxDispatcher: Done with action 'isReady' 09-23 00:15:13.524 29684 29761 I DetoxDispatcher: Handling action 'loginSuccess' (ID #0)... 09-23 00:15:13.524 29684 29761 I DetoxDispatcher: Done with action 'loginSuccess' 09-23 00:15:13.525 29684 29761 I DetoxDispatcher: Handling action 'isReady' (ID #-1000)... 09-23 00:15:13.526 29684 29684 I Detox : Wait is over: App is now idle! 09-23 00:15:13.526 29684 29761 I DetoxWSClient: Sending out action 'ready' (ID #-1000) 09-23 00:15:13.526 29684 29761 I DetoxDispatcher: Done with action 'isReady' 09-23 00:15:13.661 29684 29769 D DetoxWSClient: Received action 'reactNativeReload' (ID #-1000, params={}) 09-23 00:15:13.661 29684 29761 I DetoxDispatcher: Handling action 'reactNativeReload' (ID #-1000)... 09-23 00:15:13.662 29684 29761 I DetoxRNExt: Reloading React Native 09-23 00:15:13.666 29684 29752 W unknown:ReactNative: The packager does not seem to be running as we got an IOException requesting its status: unexpected end of stream on http://localhost:8081/... 09-23 00:15:13.673 29684 29777 I ReactNative: [GESTURE HANDLER] Tearing down gesture handler registered for root view com.facebook.react.ReactRootView{4f819ce V.E...... ......ID 0,0-1080,2088} 09-23 00:15:13.675 29684 29777 E unknown:ReactContextBaseJavaModule: Unhandled SoftException 09-23 00:15:13.675 29684 29777 E unknown:ReactContextBaseJavaModule: java.lang.RuntimeException: Catalyst Instance has already disappeared: requested by DeviceInfo 09-23 00:15:13.675 29684 29777 E unknown:ReactContextBaseJavaModule: at com.facebook.react.bridge.ReactContextBaseJavaModule.getReactApplicationContextIfActiveOrWarn(ReactContextBaseJavaModule.java:66) 09-23 00:15:13.675 29684 29777 E unknown:ReactContextBaseJavaModule: at com.facebook.react.modules.deviceinfo.DeviceInfoModule.invalidate(DeviceInfoModule.java:114) 09-23 00:15:13.675 29684 29777 E unknown:ReactContextBaseJavaModule: at com.facebook.react.bridge.ModuleHolder.destroy(ModuleHolder.java:110) 09-23 00:15:13.675 29684 29777 E unknown:ReactContextBaseJavaModule: at com.facebook.react.bridge.NativeModuleRegistry.notifyJSInstanceDestroy(NativeModuleRegistry.java:108) 09-23 00:15:13.675 29684 29777 E unknown:ReactContextBaseJavaModule: at com.facebook.react.bridge.CatalystInstanceImpl$1.run(CatalystInstanceImpl.java:368) 09-23 00:15:13.675 29684 29777 E unknown:ReactContextBaseJavaModule: at android.os.Handler.handleCallback(Handler.java:938) 09-23 00:15:13.675 29684 29777 E unknown:ReactContextBaseJavaModule: at android.os.Handler.dispatchMessage(Handler.java:99) 09-23 00:15:13.675 29684 29777 E unknown:ReactContextBaseJavaModule: at com.facebook.react.bridge.queue.MessageQueueThreadHandler.dispatchMessage(MessageQueueThreadHandler.java:27) 09-23 00:15:13.675 29684 29777 E unknown:ReactContextBaseJavaModule: at androidx.test.espresso.base.Interrogator.loopAndInterrogate(Interrogator.java:14) 09-23 00:15:13.675 29684 29777 E unknown:ReactContextBaseJavaModule: at androidx.test.espresso.base.LooperIdlingResourceInterrogationHandler$2.run(LooperIdlingResourceInterrogationHandler.java:3) 09-23 00:15:13.675 29684 29777 E unknown:ReactContextBaseJavaModule: at android.os.Handler.handleCallback(Handler.java:938) 09-23 00:15:13.675 29684 29777 E unknown:ReactContextBaseJavaModule: at android.os.Handler.dispatchMessage(Handler.java:99) 09-23 00:15:13.675 29684 29777 E unknown:ReactContextBaseJavaModule: at android.os.Looper.loopOnce(Looper.java:201) 09-23 00:15:13.675 29684 29777 E unknown:ReactContextBaseJavaModule: at android.os.Looper.loop(Looper.java:288) 09-23 00:15:13.675 29684 29777 E unknown:ReactContextBaseJavaModule: at com.facebook.react.bridge.queue.MessageQueueThreadImpl$4.run(MessageQueueThreadImpl.java:228) 09-23 00:15:13.675 29684 29777 E unknown:ReactContextBaseJavaModule: at java.lang.Thread.run(Thread.java:920) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: Unhandled SoftException 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: java.lang.RuntimeException: Catalyst Instance has already disappeared: requested by NativeAnimatedModule 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at com.facebook.react.bridge.ReactContextBaseJavaModule.getReactApplicationContextIfActiveOrWarn(ReactContextBaseJavaModule.java:66) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at com.facebook.react.animated.NativeAnimatedModule.invalidate(NativeAnimatedModule.java:897) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at com.facebook.react.bridge.ModuleHolder.destroy(ModuleHolder.java:110) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at com.facebook.react.bridge.NativeModuleRegistry.notifyJSInstanceDestroy(NativeModuleRegistry.java:108) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at com.facebook.react.bridge.CatalystInstanceImpl$1.run(CatalystInstanceImpl.java:368) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at android.os.Handler.handleCallback(Handler.java:938) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at android.os.Handler.dispatchMessage(Handler.java:99) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at com.facebook.react.bridge.queue.MessageQueueThreadHandler.dispatchMessage(MessageQueueThreadHandler.java:27) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at androidx.test.espresso.base.Interrogator.loopAndInterrogate(Interrogator.java:14) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at androidx.test.espresso.base.LooperIdlingResourceInterrogationHandler$2.run(LooperIdlingResourceInterrogationHandler.java:3) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at android.os.Handler.handleCallback(Handler.java:938) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at android.os.Handler.dispatchMessage(Handler.java:99) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at android.os.Looper.loopOnce(Looper.java:201) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at android.os.Looper.loop(Looper.java:288) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at com.facebook.react.bridge.queue.MessageQueueThreadImpl$4.run(MessageQueueThreadImpl.java:228) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at java.lang.Thread.run(Thread.java:920) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: Unhandled SoftException 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: java.lang.RuntimeException: Catalyst Instance has already disappeared: requested by FrescoModule 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at com.facebook.react.bridge.ReactContextBaseJavaModule.getReactApplicationContextIfActiveOrWarn(ReactContextBaseJavaModule.java:66) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at com.facebook.react.modules.fresco.FrescoModule.invalidate(FrescoModule.java:202) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at com.facebook.react.bridge.ModuleHolder.destroy(ModuleHolder.java:110) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at com.facebook.react.bridge.NativeModuleRegistry.notifyJSInstanceDestroy(NativeModuleRegistry.java:108) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at com.facebook.react.bridge.CatalystInstanceImpl$1.run(CatalystInstanceImpl.java:368) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at android.os.Handler.handleCallback(Handler.java:938) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at android.os.Handler.dispatchMessage(Handler.java:99) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at com.facebook.react.bridge.queue.MessageQueueThreadHandler.dispatchMessage(MessageQueueThreadHandler.java:27) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at androidx.test.espresso.base.Interrogator.loopAndInterrogate(Interrogator.java:14) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at androidx.test.espresso.base.LooperIdlingResourceInterrogationHandler$2.run(LooperIdlingResourceInterrogationHandler.java:3) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at android.os.Handler.handleCallback(Handler.java:938) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at android.os.Handler.dispatchMessage(Handler.java:99) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at android.os.Looper.loopOnce(Looper.java:201) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at android.os.Looper.loop(Looper.java:288) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at com.facebook.react.bridge.queue.MessageQueueThreadImpl$4.run(MessageQueueThreadImpl.java:228) 09-23 00:15:13.677 29684 29777 E unknown:ReactContextBaseJavaModule: at java.lang.Thread.run(Thread.java:920) 09-23 00:15:13.681 29684 29684 W unknown:ReactNative: Packager connection already open, nooping. 09-23 00:15:13.712 29684 29746 D EGL_emulation: app_time_stats: avg=539.44ms min=8.46ms max=13248.15ms count=29 09-23 00:15:13.773 29684 29908 D AppCenterCrashes: Setting react context 09-23 00:15:13.786 29684 29908 D AppCenterCrashes: Returning list containing crashes module 09-23 00:15:13.790 29684 29908 D InstallReferrerState: FEATURE_NOT_SUPPORTED 09-23 00:15:13.801 29684 29909 V RNKeychainManager: warming up started at 15559283756499 09-23 00:15:13.807 29684 29908 W unknown:ReactContext: initializeMessageQueueThreads() is called. 09-23 00:15:13.825 29684 29909 D RNKeychainManager: Probe cipher storage: CipherStorageFacebookConceal 09-23 00:15:13.825 29684 29909 D RNKeychainManager: Probe cipher storage: CipherStorageKeystoreAesCbc 09-23 00:15:13.826 29684 29909 D RNKeychainManager: Probe cipher storage: CipherStorageKeystoreRsaEcb 09-23 00:15:13.826 29684 29909 D RNKeychainManager: Selected storage: CipherStorageKeystoreAesCbc 09-23 00:15:13.877 29684 29909 W CipherStorageBase: StrongBox security storage is not available. 09-23 00:15:13.877 29684 29909 W CipherStorageBase: android.security.keystore.StrongBoxUnavailableException: Failed to generate key 09-23 00:15:13.877 29684 29909 W CipherStorageBase: at android.security.keystore2.AndroidKeyStoreKeyGeneratorSpi.engineGenerateKey(AndroidKeyStoreKeyGeneratorSpi.java:411) 09-23 00:15:13.877 29684 29909 W CipherStorageBase: at javax.crypto.KeyGenerator.generateKey(KeyGenerator.java:612) 09-23 00:15:13.877 29684 29909 W CipherStorageBase: at com.oblador.keychain.cipherStorage.CipherStorageKeystoreAesCbc.generateKey(CipherStorageKeystoreAesCbc.java:228) 09-23 00:15:13.877 29684 29909 W CipherStorageBase: at com.oblador.keychain.cipherStorage.CipherStorageBase.tryGenerateStrongBoxSecurityKey(CipherStorageBase.java:475) 09-23 00:15:13.877 29684 29909 W CipherStorageBase: at com.oblador.keychain.cipherStorage.CipherStorageBase.tryGenerateStrongBoxSecurityKey(CipherStorageBase.java:460) 09-23 00:15:13.877 29684 29909 W CipherStorageBase: at com.oblador.keychain.cipherStorage.CipherStorageBase.generateKeyAndStoreUnderAlias(CipherStorageBase.java:413) 09-23 00:15:13.877 29684 29909 W CipherStorageBase: at com.oblador.keychain.KeychainModule.internalWarmingBestCipher(KeychainModule.java:174) 09-23 00:15:13.877 29684 29909 W CipherStorageBase: at com.oblador.keychain.KeychainModule.$r8$lambda$DYujhqpjRgfFQ_gyuwMwyxxqDlk(Unknown Source:0) 09-23 00:15:13.877 29684 29909 W CipherStorageBase: at com.oblador.keychain.KeychainModule$$ExternalSyntheticLambda0.run(Unknown Source:2) 09-23 00:15:13.877 29684 29909 W CipherStorageBase: at java.lang.Thread.run(Thread.java:920) 09-23 00:15:13.877 29684 29909 W CipherStorageBase: Caused by: android.security.KeyStoreException: No StrongBox available 09-23 00:15:13.877 29684 29909 W CipherStorageBase: ... 10 more 09-23 00:15:13.880 29684 29909 V RNKeychainManager: warming up takes: 78 ms 09-23 00:15:13.942 29684 29684 W unknown:ReactNative: Packager connection already open, nooping. 09-23 00:15:13.943 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.drawer.ReactDrawerLayoutManager 09-23 00:15:13.945 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.uimanager.LayoutShadowNode 09-23 00:15:13.946 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactHorizontalScrollViewManager 09-23 00:15:13.947 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactHorizontalScrollContainerViewManager 09-23 00:15:13.947 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.progressbar.ReactProgressBarViewManager 09-23 00:15:13.948 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.progressbar.ProgressBarShadowNode 09-23 00:15:13.948 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactScrollViewManager 09-23 00:15:13.949 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.slider.ReactSliderManager 09-23 00:15:13.949 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.slider.ReactSliderManager$ReactSliderShadowNode 09-23 00:15:13.950 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.switchview.ReactSwitchManager 09-23 00:15:13.950 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.switchview.ReactSwitchManager$ReactSwitchShadowNode 09-23 00:15:13.950 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.swiperefresh.SwipeRefreshLayoutManager 09-23 00:15:13.951 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.frescosupport.FrescoBasedReactTextInlineImageViewManager 09-23 00:15:13.951 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.frescosupport.FrescoBasedReactTextInlineImageShadowNode 09-23 00:15:13.952 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.image.ReactImageManager 09-23 00:15:13.952 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.modal.ReactModalHostManager 09-23 00:15:13.952 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.modal.ModalHostShadowNode 09-23 00:15:13.953 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactRawTextManager 09-23 00:15:13.953 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactRawTextShadowNode 09-23 00:15:13.954 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.textinput.ReactTextInputManager 09-23 00:15:13.954 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.textinput.ReactTextInputShadowNode 09-23 00:15:13.956 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactTextViewManager 09-23 00:15:13.958 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactTextShadowNode 09-23 00:15:13.958 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.view.ReactViewManager 09-23 00:15:13.959 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactVirtualTextViewManager 09-23 00:15:13.965 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactVirtualTextShadowNode 09-23 00:15:13.966 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.unimplementedview.ReactUnimplementedViewManager 09-23 00:15:13.966 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class org.reactnative.maskedview.RNCMaskedViewManager 09-23 00:15:13.967 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativecommunity.picker.ReactDialogPickerManager 09-23 00:15:13.967 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativecommunity.picker.ReactPickerShadowNode 09-23 00:15:13.969 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativecommunity.picker.ReactDropdownPickerManager 09-23 00:15:13.969 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativestripesdk.CardFieldViewManager 09-23 00:15:13.970 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativestripesdk.AuBECSDebitFormViewManager 09-23 00:15:13.970 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativestripesdk.StripeContainerManager 09-23 00:15:13.970 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativestripesdk.CardFormViewManager 09-23 00:15:13.971 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativestripesdk.GooglePayButtonManager 09-23 00:15:13.971 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativestripesdk.pushprovisioning.AddToWalletButtonManager 09-23 00:15:13.971 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativestripesdk.addresssheet.AddressSheetViewManager 09-23 00:15:13.972 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.airbnb.android.react.lottie.LottieAnimationViewManager 09-23 00:15:13.972 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.dylanvann.fastimage.FastImageViewManager 09-23 00:15:13.973 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.gesturehandler.react.RNGestureHandlerRootViewManager 09-23 00:15:13.975 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.gesturehandler.react.RNGestureHandlerButtonViewManager 09-23 00:15:13.975 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.BV.LinearGradient.LinearGradientManager 09-23 00:15:13.976 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.rnmaps.maps.MapManager 09-23 00:15:13.979 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.rnmaps.maps.MapMarkerManager 09-23 00:15:13.980 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.rnmaps.maps.MapCalloutManager 09-23 00:15:13.980 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.rnmaps.maps.MapPolylineManager 09-23 00:15:13.980 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.rnmaps.maps.MapGradientPolylineManager 09-23 00:15:13.981 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.rnmaps.maps.MapPolygonManager 09-23 00:15:13.981 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.rnmaps.maps.MapCircleManager 09-23 00:15:13.981 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.rnmaps.maps.MapLiteManager 09-23 00:15:13.981 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.rnmaps.maps.MapUrlTileManager 09-23 00:15:13.982 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.rnmaps.maps.MapWMSTileManager 09-23 00:15:13.989 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.rnmaps.maps.MapLocalTileManager 09-23 00:15:13.990 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.rnmaps.maps.MapOverlayManager 09-23 00:15:13.990 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.rnmaps.maps.MapHeatmapManager 09-23 00:15:13.990 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.th3rdwave.safeareacontext.SafeAreaProviderManager 09-23 00:15:13.991 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.th3rdwave.safeareacontext.SafeAreaViewManager 09-23 00:15:13.991 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.th3rdwave.safeareacontext.SafeAreaViewShadowNode 09-23 00:15:13.992 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenContainerViewManager 09-23 00:15:13.992 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenViewManager 09-23 00:15:13.997 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenStackViewManager 09-23 00:15:13.998 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenStackHeaderConfigViewManager 09-23 00:15:13.998 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenStackHeaderSubviewManager 09-23 00:15:13.998 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.SearchBarManager 09-23 00:15:13.999 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$DefsViewManager 09-23 00:15:13.999 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.VirtualViewManager$RenderableShadowNode 09-23 00:15:14.000 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$MarkerManager 09-23 00:15:14.000 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$ForeignObjectManager 09-23 00:15:14.005 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$EllipseViewManager 09-23 00:15:14.006 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$LineViewManager 09-23 00:15:14.007 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$LinearGradientManager 09-23 00:15:14.009 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$GroupViewManager 09-23 00:15:14.014 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$TextViewManager 09-23 00:15:14.022 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$ImageViewManager 09-23 00:15:14.023 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$ClipPathViewManager 09-23 00:15:14.023 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$RadialGradientManager 09-23 00:15:14.033 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$MaskManager 09-23 00:15:14.042 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$SymbolManager 09-23 00:15:14.049 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$PatternManager 09-23 00:15:14.050 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$RectViewManager 09-23 00:15:14.050 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$TextPathViewManager 09-23 00:15:14.051 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.SvgViewManager 09-23 00:15:14.054 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$PathViewManager 09-23 00:15:14.054 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$UseViewManager 09-23 00:15:14.059 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$CircleViewManager 09-23 00:15:14.059 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$TSpanViewManager 09-23 00:15:14.060 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativecommunity.webview.RNCWebViewManager 09-23 00:15:14.061 29684 29912 W unknown:ReactContext: initializeMessageQueueThreads() is called. 09-23 00:15:14.062 29684 29684 D DetoxRNLoading: Listener-proxy method called: onReactContextInitialized 09-23 00:15:14.062 29684 29684 I DetoxRNLoading: Got new RN-context async'ly through listener 09-23 00:15:14.062 29684 29684 D DetoxRNLoading: Listener-proxy method called: equals 09-23 00:15:14.063 29684 29761 I DetoxRNIdleRes: Setting up Espresso Idling Resources for React Native 09-23 00:15:14.065 29684 29761 D AsyncStorageIR: Checking whether a custom IR for Async-Storage is required... (legacy=false) 09-23 00:15:14.065 29684 29761 D AsyncStorageIR: IR for Async-Storage is required! (legacy=false) 09-23 00:15:14.065 29684 29761 D AsyncStorageIR: Checking whether a custom IR for Async-Storage is required... (legacy=true) 09-23 00:15:14.065 29684 29761 D AsyncStorageIR: IR for Async-Storage is required! (legacy=true) 09-23 00:15:14.069 29684 29684 D AsyncStorageIR: Async-storage is busy! 09-23 00:15:14.069 29684 29761 I DetoxWSClient: Sending out action 'ready' (ID #-1000) 09-23 00:15:14.070 29684 29761 I DetoxDispatcher: Done with action 'reactNativeReload' 09-23 00:15:14.084 29684 29769 D DetoxWSClient: Received action 'invoke' (ID #2, params={"target":{"type":"Class","value":"com.wix.detox.espresso.EspressoDetox"},"method":"perform","args":[{"type":"Invocation","value":{"target":{"type":"Class","value":"com.wix.detox.espresso.DetoxMatcher"},"method":"matcherForTestId","args":["email-input",{"type":"boolean","value":false}]}},{"type":"Invocation","value":{"target":{"type":"Class","value":"com.wix.detox.espresso.DetoxViewActions"},"method":"typeText","args":["test@test.com"]}}]}) 09-23 00:15:14.085 29684 29761 I DetoxDispatcher: Handling action 'invoke' (ID #2)... 09-23 00:15:14.087 29684 29761 D Detox : class com.wix.detox.espresso.DetoxMatcher, matcherForTestId, [email-input, false] 09-23 00:15:14.092 29684 29761 D Detox : class com.wix.detox.espresso.DetoxViewActions, typeText, [test@test.com] 09-23 00:15:14.115 29684 29761 W route.fisherma: Accessing hidden method Landroid/view/ViewConfiguration;->getDoubleTapMinTime()I (unsupported, reflection, allowed) 09-23 00:15:14.133 29684 29761 D Detox : class com.wix.detox.espresso.EspressoDetox, perform, [(view.getTag() is "email-input" and view has effective visibility ), com.wix.detox.espresso.action.DetoxTypeTextAction@9d64834] 09-23 00:15:14.179 29684 29684 I IdlingResourceRegistry: Ignoring message from unregistered resource: androidx.test.espresso.base.LooperIdlingResourceInterrogationHandler@d16fbd2 09-23 00:15:14.180 29684 29684 I IdlingResourceRegistry: Ignoring message from unregistered resource: androidx.test.espresso.base.LooperIdlingResourceInterrogationHandler@9ef64a3 09-23 00:15:14.180 29684 29684 I IdlingResourceRegistry: Ignoring message from unregistered resource: androidx.test.espresso.base.LooperIdlingResourceInterrogationHandler@d16fbd2 09-23 00:15:14.530 29684 29911 I ReactNativeJS: Running "FisherMan 09-23 00:15:14.583 29684 29684 W UiControllerImpl: Waiting for: DYNAMIC_TASKS_HAVE_IDLED for 100 iterations. 09-23 00:15:14.591 29684 29912 E RNKeychainManager: No entry found for service: 09-23 00:15:14.713 29684 29746 D EGL_emulation: app_time_stats: avg=116.74ms min=2.47ms max=899.12ms count=8 09-23 00:15:14.783 29684 29684 W UiControllerImpl: Waiting for: DYNAMIC_TASKS_HAVE_IDLED for 200 iterations. 09-23 00:15:14.840 29684 29912 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreensShadowNode 09-23 00:15:14.847 29684 29912 W unknown:ReactNative: Attempt to set local data for view with unknown tag: -1 09-23 00:15:14.849 29684 29912 W unknown:ReactNative: Attempt to set local data for view with unknown tag: -1 09-23 00:15:14.851 29684 29912 W unknown:ReactNative: Attempt to set local data for view with unknown tag: -1 09-23 00:15:14.852 29684 29912 W unknown:ReactNative: Attempt to set local data for view with unknown tag: -1 09-23 00:15:14.867 29684 29684 W UiControllerImpl: Waiting for: DYNAMIC_TASKS_HAVE_IDLED for 300 iterations. 09-23 00:15:14.907 29684 29684 W UiControllerImpl: Waiting for: DYNAMIC_TASKS_HAVE_IDLED for 400 iterations. 09-23 00:15:14.914 29684 29684 I Detox : UIManagerModule is busy 09-23 00:15:14.929 29684 29684 I ReactNative: [GESTURE HANDLER] Initialize gesture handler for root view com.facebook.react.ReactRootView{4f819ce V.E...... ......ID 0,0-1080,2088 #b} 09-23 00:15:14.956 29684 29684 I Detox : UIManagerModule is busy 09-23 00:15:14.986 29684 29684 W UiControllerImpl: Waiting for: DYNAMIC_TASKS_HAVE_IDLED for 100 iterations. 09-23 00:15:14.990 29684 29684 W UiControllerImpl: Waiting for: DYNAMIC_TASKS_HAVE_IDLED for 200 iterations. 09-23 00:15:15.008 29684 29684 W UiControllerImpl: Waiting for: DYNAMIC_TASKS_HAVE_IDLED for 300 iterations. 09-23 00:15:15.019 29684 29684 W UiControllerImpl: Waiting for: DYNAMIC_TASKS_HAVE_IDLED for 400 iterations. 09-23 00:15:15.022 29684 29684 I Detox : UIManagerModule is busy 09-23 00:15:15.030 29684 29684 I Detox : AnimatedModule is busy. 09-23 00:15:15.044 29684 29684 I Detox : AnimatedModule is busy. 09-23 00:15:15.060 29684 29684 I Detox : AnimatedModule is busy. 09-23 00:15:15.077 29684 29684 I Detox : AnimatedModule is busy. 09-23 00:15:15.093 29684 29684 I Detox : AnimatedModule is busy. 09-23 00:15:15.111 29684 29684 I Detox : AnimatedModule is busy. 09-23 00:15:15.130 29684 29684 I Detox : AnimatedModule is busy. 09-23 00:15:15.143 29684 29684 I Detox : AnimatedModule is busy. 09-23 00:15:15.159 29684 29684 I Detox : AnimatedModule is busy. 09-23 00:15:15.176 29684 29684 I Detox : AnimatedModule is busy. 09-23 00:15:15.193 29684 29684 I Detox : AnimatedModule is busy. 09-23 00:15:15.212 29684 29684 I Detox : AnimatedModule is busy. 09-23 00:15:15.227 29684 29684 I Detox : AnimatedModule is busy. 09-23 00:15:15.243 29684 29684 I Detox : AnimatedModule is busy. 09-23 00:15:15.260 29684 29684 I Detox : AnimatedModule is busy. 09-23 00:15:15.277 29684 29684 I Detox : AnimatedModule is busy. 09-23 00:15:15.293 29684 29684 I Detox : AnimatedModule is busy. 09-23 00:15:15.312 29684 29684 I Detox : AnimatedModule is busy. 09-23 00:15:15.354 29684 29684 I Detox : UIManagerModule is busy 09-23 00:15:15.370 29684 29684 W route.fisherma: Accessing hidden method Landroid/view/WindowManagerGlobal;->getInstance()Landroid/view/WindowManagerGlobal; (unsupported, reflection, allowed) 09-23 00:15:15.371 29684 29684 W route.fisherma: Accessing hidden field Landroid/view/WindowManagerGlobal;->mViews:Ljava/util/ArrayList; (unsupported, reflection, allowed) 09-23 00:15:15.371 29684 29684 W route.fisherma: Accessing hidden field Landroid/view/WindowManagerGlobal;->mParams:Ljava/util/ArrayList; (unsupported, reflection, allowed) 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: Test exception 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: java.lang.reflect.InvocationTargetException 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: at java.lang.reflect.Method.invoke(Native Method) 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: at org.apache.commons.lang3.reflect.MethodUtils.invokeStaticMethod(MethodUtils.java:443) 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: at org.apache.commons.lang3.reflect.MethodUtils.invokeStaticMethod(MethodUtils.java:405) 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: at com.wix.invoke.types.ClassTarget.execute(ClassTarget.java:23) 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: at com.wix.invoke.types.Target.invoke(Target.java:59) 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: at com.wix.invoke.MethodInvocation.invoke(MethodInvocation.java:35) 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: at com.wix.invoke.MethodInvocation.invoke(MethodInvocation.java:26) 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: at com.wix.invoke.MethodInvocation.invoke(MethodInvocation.java:20) 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: at com.wix.detox.adapters.server.InvokeActionHandler.handle(DetoxActionHandlers.kt:54) 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: at com.wix.detox.adapters.server.ActionsExecutor.executeAction$lambda-2$lambda-1(DetoxActionsDispatcher.kt:64) 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: at com.wix.detox.adapters.server.ActionsExecutor.$r8$lambda$nk3cF8ntnfFqbJOcVqd04vjb5nY(Unknown Source:0) 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: at com.wix.detox.adapters.server.ActionsExecutor$$ExternalSyntheticLambda0.run(Unknown Source:8) 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: at android.os.Handler.handleCallback(Handler.java:938) 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: at android.os.Handler.dispatchMessage(Handler.java:99) 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: at android.os.Looper.loopOnce(Looper.java:201) 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: at android.os.Looper.loop(Looper.java:288) 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: at com.wix.detox.adapters.server.ActionsExecutor._init_$lambda-0(DetoxActionsDispatcher.kt:50) 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: at com.wix.detox.adapters.server.ActionsExecutor.$r8$lambda$Hi5vyewqQiQqk57AkJy_cHqNGKY(Unknown Source:0) 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: at com.wix.detox.adapters.server.ActionsExecutor$$ExternalSyntheticLambda1.run(Unknown Source:4) 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: at java.lang.Thread.run(Thread.java:920) 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: Caused by: androidx.test.espresso.NoMatchingViewException: No views in hierarchy found matching: (view.getTag() is "email-input" and view has effective visibility ) 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: View Hierarchy: 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: +>DecorView{id=-1, visibility=VISIBLE, width=1080, height=2220, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params={(0,0)(fillxfill) sim={adjust=resize} ty=BASE_APPLICATION fmt=TRANSLUCENT wanim=0x10302fe 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: fl=LAYOUT_IN_SCREEN FORCE_NOT_FULLSCREEN LAYOUT_INSET_DECOR SPLIT_TOUCH HARDWARE_ACCELERATED DRAWS_SYSTEM_BAR_BACKGROUNDS 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: pfl=NO_MOVE_ANIMATION FORCE_DRAW_STATUS_BAR_BACKGROUND FIT_INSETS_CONTROLLED 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: bhv=DEFAULT 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: fitSides=}, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=3} 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: +->LinearLayout{id=-1, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@7ef7986, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: +-->ViewStub{id=16908720, res-name=action_mode_bar_stub, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@ba1c247, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0} 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: +-->FrameLayout{id=-1, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@7017b9d, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} 09-23 00:15:15.393 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.395 29684 29761 I DetoxActionHandlers: +--->FitWindowsLinearLayout{id=2131361855, res-name=action_bar_root, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@d80d9e0, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} 09-23 00:15:15.395 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.395 29684 29761 I DetoxActionHandlers: +---->ViewStubCompat{id=2131361867, res-name=action_mode_bar_stub, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@57f3499, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0} 09-23 00:15:15.395 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.395 29684 29761 I DetoxActionHandlers: +---->ContentFrameLayout{id=16908290, res-name=content, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@86335e, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} 09-23 00:15:15.395 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.395 29684 29761 I DetoxActionHandlers: +----->ReactRootView{id=11, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@8858155, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} 09-23 00:15:15.395 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.395 29684 29761 I DetoxActionHandlers: +------>RNGestureHandlerRootView{id=209, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@afe276a, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} 09-23 00:15:15.395 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.395 29684 29761 I DetoxActionHandlers: +------->SafeAreaProvider{id=207, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@435445b, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} 09-23 00:15:15.395 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.395 29684 29761 I DetoxActionHandlers: +-------->ReactViewGroup{id=205, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@ee404f8, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} 09-23 00:15:15.395 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.395 29684 29761 I DetoxActionHandlers: +--------->ScreenContainer{id=199, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@f4f5036, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} 09-23 00:15:15.395 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.395 29684 29761 I DetoxActionHandlers: +---------->ScreensFrameLayout{id=-1, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@fd078a4, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} 09-23 00:15:15.395 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +----------->Screen{id=197, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@615e3d3, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------>ReactViewGroup{id=39, visibility=VISIBLE, width=1080, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@aee7b10, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=0} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------>ReactViewGroup{id=195, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@f697609, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------->ReactViewGroup{id=193, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@5d4300e, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +-------------->ReactViewGroup{id=189, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@ad0ea2f, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +--------------->ReactViewGroup{id=187, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@1a8383c, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +---------------->ReactScrollView{id=177, visibility=VISIBLE, width=1080, height=2088, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@1a73f1a, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +----------------->ReactViewGroup{id=175, visibility=VISIBLE, width=928, height=1545, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@18bfa4b, tag=null, root-is-layout-requested=false, has-input-connection=false, x=76.0, y=209.0, child-count=12} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------------>ReactTextView{id=47, visibility=VISIBLE, width=928, height=103, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@44cdd41, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, text=Anmelden, input-type=0, ime-target=false, has-links=false} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------------>ReactViewGroup{id=49, visibility=VISIBLE, width=928, height=159, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@16a32e6, tag=text-input-outline, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=329.0, child-count=0} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------------>ReactViewGroup{id=69, visibility=VISIBLE, width=928, height=176, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@99df027, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=312.0, child-count=4} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------------->ReactViewGroup{id=53, visibility=VISIBLE, width=33, height=5, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@c9552d4, tag=null, root-is-layout-requested=false, has-input-connection=false, x=28.0, y=17.0, child-count=0} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------------->ReactTextView{id=57, visibility=VISIBLE, width=269, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@ec90c7d, tag=null, root-is-layout-requested=false, has-input-connection=false, x=50.0, y=74.0, text=E-Mail-Adresse, input-type=0, ime-target=false, has-links=false} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------------->ReactTextView{id=63, visibility=VISIBLE, width=346, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@3169772, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=72.0, text=E-Mail-Adresse, input-type=0, ime-target=false, has-links=false} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------------->ReactTextView{id=67, visibility=VISIBLE, width=346, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@6ef67c3, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=72.0, text=E-Mail-Adresse, input-type=0, ime-target=false, has-links=false} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------------>ReactEditText{id=73, visibility=VISIBLE, width=928, height=154, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@95ec840, tag=text-input-outlined, root-is-layout-requested=false, has-input-connection=true, editor-info=[inputType=0x4001 imeOptions=0xc000006 privateImeOptions=null actionLabel=null actionId=0 initialSelStart=0 initialSelEnd=0 initialCapsMode=0x2000 hintText= label=null packageName=null autofillId=null fieldId=0 fieldName=null extras=Bundle[{android.support.text.emoji.emojiCompat_metadataVersion=7, android.support.text.emoji.emojiCompat_replaceAll=false}] hintLocales=null contentMimeTypes=null ], x=0.0, y=334.0, text=, hint=, input-type=16385, ime-target=false, has-links=false} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------------>ReactViewGroup{id=85, visibility=VISIBLE, width=928, height=159, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@fdef379, tag=text-input-outline, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=568.0, child-count=0} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------------>ReactViewGroup{id=105, visibility=VISIBLE, width=928, height=176, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@8b2b8be, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=551.0, child-count=4} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------------->ReactViewGroup{id=87, visibility=VISIBLE, width=33, height=5, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@956bd1f, tag=null, root-is-layout-requested=false, has-input-connection=false, x=28.0, y=17.0, child-count=0} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------------->ReactTextView{id=93, visibility=VISIBLE, width=170, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@c88286c, tag=null, root-is-layout-requested=false, has-input-connection=false, x=50.0, y=74.0, text=Passwort, input-type=0, ime-target=false, has-links=false} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------------->ReactTextView{id=97, visibility=VISIBLE, width=247, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@1d24e35, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=72.0, text=Passwort, input-type=0, ime-target=false, has-links=false} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------------->ReactTextView{id=103, visibility=VISIBLE, width=247, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@c5da2ca, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=72.0, text=Passwort, input-type=0, ime-target=false, has-links=false} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------------>ReactEditText{id=107, visibility=VISIBLE, width=807, height=154, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@db40c3b, tag=text-input-outlined, root-is-layout-requested=false, has-input-connection=true, editor-info=[inputType=0x4081 imeOptions=0xc000006 privateImeOptions=null actionLabel=null actionId=0 initialSelStart=0 initialSelEnd=0 initialCapsMode=0x2000 hintText= label=null packageName=null autofillId=null fieldId=0 fieldName=null extras=Bundle[{android.support.text.emoji.emojiCompat_metadataVersion=7, android.support.text.emoji.emojiCompat_replaceAll=false}] hintLocales=null contentMimeTypes=null ], x=0.0, y=573.0, text=, hint=, input-type=16513, ime-target=false, has-links=false} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------------>ReactViewGroup{id=119, visibility=VISIBLE, width=99, height=99, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@2055f58, tag=null, root-is-layout-requested=false, has-input-connection=false, x=813.0, y=598.0, child-count=1} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------------->ReactTextView{id=115, visibility=VISIBLE, width=76, height=77, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@56698b1, tag=null, root-is-layout-requested=false, has-input-connection=false, x=12.0, y=11.0, text=, input-type=0, ime-target=false, has-links=false} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------------>ReactViewGroup{id=145, visibility=VISIBLE, width=445, height=54, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@91b2196, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=790.0, child-count=2} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------------->ReactViewGroup{id=135, visibility=VISIBLE, width=49, height=49, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@4cd3117, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=3.0, child-count=0} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------------->ReactTextView{id=139, visibility=VISIBLE, width=352, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@f1d1904, tag=null, root-is-layout-requested=false, has-input-connection=false, x=93.0, y=0.0, text=Angemeldet bleiben, input-type=0, ime-target=false, has-links=false} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------------>ReactTextView{id=153, visibility=VISIBLE, width=461, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@a1b0eed, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=958.0, text=Du hast noch kein Konto? , input-type=0, ime-target=false, has-links=false} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------------>ReactViewGroup{id=159, visibility=VISIBLE, width=214, height=54, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@45fc122, tag=null, root-is-layout-requested=false, has-input-connection=false, x=461.0, y=953.0, child-count=1} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------------->ReactTextView{id=157, visibility=VISIBLE, width=214, height=54, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@be9c7b3, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, text=Registrieren, input-type=0, ime-target=false, has-links=false} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------------>ReactViewGroup{id=169, visibility=VISIBLE, width=950, height=115, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@4d4c170, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=1221.0, child-count=1} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------------------->ReactTextView{id=167, visibility=VISIBLE, width=194, height=58, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@e26ace9, tag=null, root-is-layout-requested=false, has-input-connection=false, x=378.0, y=28.0, text=Anmelden, input-type=0, ime-target=false, has-links=false} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +---------------->ReactViewGroup{id=183, visibility=VISIBLE, width=1080, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@45ccd6e, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=0} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +--------->ReactViewGroup{id=203, visibility=VISIBLE, width=1080, height=220, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@32f2c0f, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=0} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------>ReactViewGroup{id=217, visibility=VISIBLE, width=1080, height=165, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@d1c849c, tag=toastAnimatedContainer, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=-330.0, child-count=1} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +------->ReactViewGroup{id=215, visibility=VISIBLE, width=935, height=165, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@2342ea5, tag=toastTouchableContainer, root-is-layout-requested=false, has-input-connection=false, x=73.0, y=0.0, child-count=1} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +-------->ReactViewGroup{id=213, visibility=VISIBLE, width=922, height=165, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@f0c527a, tag=toastContentContainer, root-is-layout-requested=false, has-input-connection=false, x=14.0, y=0.0, child-count=0} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +->View{id=16908336, res-name=navigationBarBackground, visibility=VISIBLE, width=1080, height=132, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@dbc7a2b, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=2088.0} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: | 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: +->View{id=16908335, res-name=statusBarBackground, visibility=INVISIBLE, width=1080, height=66, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@ebb4e88, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0} 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: at dalvik.system.VMStack.getThreadStackTrace(Native Method) 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: at java.lang.Thread.getStackTrace(Thread.java:1724) 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: at androidx.test.espresso.base.DefaultFailureHandler.getUserFriendlyError(DefaultFailureHandler.java:12) 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: at androidx.test.espresso.base.DefaultFailureHandler.handle(DefaultFailureHandler.java:7) 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: at androidx.test.espresso.ViewInteraction.waitForAndHandleInteractionResults(ViewInteraction.java:8) 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: at androidx.test.espresso.ViewInteraction.desugaredPerform(ViewInteraction.java:11) 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: at androidx.test.espresso.ViewInteraction.perform(ViewInteraction.java:4) 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: at com.wix.detox.espresso.performer.SingleViewActionPerformer.performOn(SingleViewActionPerformer.kt:15) 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: at com.wix.detox.espresso.EspressoDetox.perform(EspressoDetox.java:39) 09-23 00:15:15.396 29684 29761 I DetoxActionHandlers: ... 20 more 09-23 00:15:15.397 29684 29761 I DetoxWSClient: Sending out action 'testFailed' (ID #2) 09-23 00:15:15.410 29684 29761 I DetoxDispatcher: Done with action 'invoke' ```

More data, please!

No response

stale[bot] commented 9 months ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. If you believe the issue is still relevant, please test on the latest Detox and report back.

Thank you for your contributions!

For more information on bots in this repository, read this discussion.

abanoubamin commented 9 months ago

Any updates here?