Flutter App Automation

Platform : Android
Appium version : 2.4.1
Real Device: Galaxy Tab A7 Lite
Language: Java & Appium
Your OS : Windows 10

Hi: I’m trying to automate mobile app developed in flutter.
Below code is the initial configuration. Appium is unable to detect any value in the flutter apk.


Have given the console log at the bottom of the page. Appreciate any inputs/clarifications/solutions of the issue I’ve posted. Thanks.

//		Thread.sleep(3000);
		rb = ResourceBundle.getBundle("config");//Read config.properties.
	AppiumDriverLocalService service = AppiumDriverLocalService.buildDefaultService();
	service.start();
		sAssertinFn = new SoftAssert();
	UiAutomator2Options options = new UiAutomator2Options();


	options.setDeviceName("R9ZR908HTNR");
	options.setPlatformVersion("14.0");
	options.setPlatformName("Android");
//	options.setAutomationName("UiAutomator2");
	options.setAutomationName("Flutter");
	
	System.out.println(System.getProperty("user.dir")+"\\src\\test\\resources\\" + "app-profile.apk");
	options.setCapability("app", System.getProperty("user.dir")+"\\src\\test\\resources\\" + "app-profile.apk");
	options.setCapability("appium:noReset", false);
	options.setCapability("appium:fullReset", true);
	
	options.setCapability("appPackage","com.example.automation");
	options.setCapability("appActivity","com.example.automation.MainActivity");
	options.setCapability("autoDismissAlerts", true);
	options.setCapability("autoGrantPermissions", true);
	options.setCapability("autoAcceptAlerts", true);
	
	Adriver = new AndroidDriver(new URL("http://127.0.0.1:4723"),options);
	Adriver.manage().timeouts().implicitlyWait(Duration.ofSeconds(10));
	Thread.sleep(2000);

console log. With AutomationName as UiAutomator2 and AutomationName as Flutter
Log for AutomationName as UiAutomator2
C:\Users\Rsoft>appium --use-plugins=gestures
[Appium] Attempting to load plugin gestures…
[Appium] Requiring plugin at C:\Users\Rsoft.appium\node_modules\appium-gestures-plugin\lib\index.js
[Appium] GesturesPlugin has been successfully loaded in 0.660s
[Appium] Welcome to Appium v2.4.1
[Appium] Non-default server args:
[Appium] {
[Appium] usePlugins: [
[Appium] ‘gestures’
[Appium] ]
[Appium] }
[Appium] The autodetected Appium home path: C:\Users\Rsoft.appium
[Appium] Attempting to load driver uiautomator2…
[Appium] Attempting to load driver chromium…
[Appium] Attempting to load driver flutter…
[Appium] Requiring driver at C:\Users\Rsoft.appium\node_modules\appium-uiautomator2-driver\build\index.js
[Appium] AndroidUiautomator2Driver has been successfully loaded in 0.866s
[Appium] Requiring driver at C:\Users\Rsoft.appium\node_modules\appium-chromium-driver\index.js
[Appium] ChromiumDriver has been successfully loaded in 1.561s
[Appium] Requiring driver at C:\Users\Rsoft.appium\node_modules\appium-flutter-driver\build\lib\driver.js
[Appium] FlutterDriver has been successfully loaded in 3.860s
[Appium] Appium REST http interface listener started on http://0.0.0.0:4723
[Appium] You can provide the following URLs in your client code to connect to this server:
[Appium] http://192.168.31.5:4723/
[Appium] http://127.0.0.1:4723/ (only accessible from the same host)
[Appium] Available drivers:
[Appium] - [email protected] (automationName ‘UiAutomator2’)
[Appium] - [email protected] (automationName ‘Chromium’)
[Appium] - [email protected] (automationName ‘Flutter’)
[Appium] Available plugins:
[Appium] - [email protected] (ACTIVE)
[HTTP] → GET /status
[HTTP] {}
[AppiumDriver@a142] Calling AppiumDriver.getStatus() with args:
[AppiumDriver@a142] Responding to client with driver.getStatus() result: {“ready”:true,“message”:“The server is ready to accept new connections”,“build”:{“version”:“2.4.1”}}
[HTTP] ← GET /status 200 10 ms - 110
[HTTP]
[HTTP] Request idempotency key: d6dd04d2-ea04-4348-bc97-48853532c592
[HTTP] → POST /session
[HTTP] {“capabilities”:{“firstMatch”:[{}],“alwaysMatch”:{“appium:platformVersion”:“14.0”,“appium:app”:“D:\Automation\CRM_MB\src\test\resources\app-profile.apk”,“appium:automationName”:“UiAutomator2”,“appium:appPackage”:“com.example.automation”,“appium:autoDismissAlerts”:true,“appium:autoGrantPermissions”:true,“appium:appActivity”:“com.example.automation.MainActivity”,“appium:fullReset”:true,“appium:autoAcceptAlerts”:true,“platformName”:“ANDROID”,“appium:deviceName”:“R9ZR908HTNR”,“appium:noReset”:false}}}
[AppiumDriver@a142] Calling AppiumDriver.createSession() with args: [null,null,{“firstMatch”:[{}],“alwaysMatch”:{“appium:platformVersion”:“14.0”,“appium:app”:“D:\Automation\CRM_MB\src\test\resources\app-profile.apk”,“appium:automationName”:“UiAutomator2”,“appium:appPackage”:“com.example.automation”,“appium:autoDismissAlerts”:true,“appium:autoGrantPermissions”:true,“appium:appActivity”:“com.example.automation.MainActivity”,“appium:fullReset”:true,“appium:autoAcceptAlerts”:true,“platformName”:“ANDROID”,“appium:deviceName”:“R9ZR908HTNR”,“appium:noReset”:false}}]
[AppiumDriver@a142] Event ‘newSessionRequested’ logged at 1716808356406 (16:42:36 GMT+0530 (India Standard Time))
[Appium] Attempting to find matching driver for automationName ‘UiAutomator2’ and platformName ‘ANDROID’
[Appium] The ‘uiautomator2’ driver was installed and matched caps.
[Appium] Will require it at C:\Users\Rsoft.appium\node_modules\appium-uiautomator2-driver
[Appium] Requiring driver at C:\Users\Rsoft.appium\node_modules\appium-uiautomator2-driver\build\index.js
[AppiumDriver@a142] Appium v2.4.1 creating new AndroidUiautomator2Driver (v2.42.1) session
[AppiumDriver@a142] Checking BaseDriver versions for Appium and AndroidUiautomator2Driver
[AppiumDriver@a142] Appium’s BaseDriver version is 9.5.0
[AppiumDriver@a142] AndroidUiautomator2Driver’s BaseDriver version is 9.5.0
[AndroidUiautomator2Driver@44f2] Creating session with W3C capabilities: {
[AndroidUiautomator2Driver@44f2] “alwaysMatch”: {
[AndroidUiautomator2Driver@44f2] “platformName”: “ANDROID”,
[AndroidUiautomator2Driver@44f2] “appium:platformVersion”: “14.0”,
[AndroidUiautomator2Driver@44f2] “appium:app”: “D:\Automation\CRM_MB\src\test\resources\app-profile.apk”,
[AndroidUiautomator2Driver@44f2] “appium:automationName”: “UiAutomator2”,
[AndroidUiautomator2Driver@44f2] “appium:appPackage”: “com.example.automation”,
[AndroidUiautomator2Driver@44f2] “appium:autoDismissAlerts”: true,
[AndroidUiautomator2Driver@44f2] “appium:autoGrantPermissions”: true,
[AndroidUiautomator2Driver@44f2] “appium:appActivity”: “com.example.automation.MainActivity”,
[AndroidUiautomator2Driver@44f2] “appium:fullReset”: true,
[AndroidUiautomator2Driver@44f2] “appium:autoAcceptAlerts”: true,
[AndroidUiautomator2Driver@44f2] “appium:deviceName”: “R9ZR908HTNR”,
[AndroidUiautomator2Driver@44f2] “appium:noReset”: false
[AndroidUiautomator2Driver@44f2] },
[AndroidUiautomator2Driver@44f2] “firstMatch”: [
[AndroidUiautomator2Driver@44f2] {}
[AndroidUiautomator2Driver@44f2] ]
[AndroidUiautomator2Driver@44f2] }
[AndroidUiautomator2Driver@44f2] The following provided capabilities were not recognized by this driver:
[AndroidUiautomator2Driver@44f2] autoDismissAlerts
[AndroidUiautomator2Driver@44f2] autoAcceptAlerts
[AndroidUiautomator2Driver@44f2 (30d21d00)] Session created with session id: 30d21d00-d71e-46fc-a10c-c06cfc079142
[BaseDriver] Using local app ‘D:\Automation\CRM_MB\src\test\resources\app-profile.apk’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Checking whether app is actually present
[ADB] Found 2 ‘build-tools’ folders under ‘C:\Users\Rsoft\AppData\Local\Android\Sdk’ (newest first):
[ADB] C:\Users\Rsoft\AppData\Local\Android\Sdk\build-tools\34.0.0
[ADB] C:\Users\Rsoft\AppData\Local\Android\Sdk\build-tools\30.0.3
[ADB] Using ‘adb.exe’ from ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 start-server’
[AndroidDriver] Retrieving device list
[ADB] Trying to find connected Android devices
[ADB] Getting connected devices
[ADB] Connected devices: [{“udid”:“R9ZR908HTNR”,“state”:“device”}]
[AndroidDriver] Looking for a device with Android ‘14.0.0’
[ADB] Setting device id to R9ZR908HTNR
[ADB] Getting device platform version
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell getprop ro.build.version.release’
[ADB] Current device property ‘ro.build.version.release’: 14
[AndroidDriver] Using device: R9ZR908HTNR
[ADB] Using ‘adb.exe’ from ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 start-server’
[ADB] Setting device id to R9ZR908HTNR
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell getprop ro.build.version.sdk’
[ADB] Current device property ‘ro.build.version.sdk’: 34
[ADB] Getting device platform version
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell getprop ro.build.version.release’
[ADB] Current device property ‘ro.build.version.release’: 14
[ADB] Device API level: 34
[AndroidUiautomator2Driver@44f2 (30d21d00)] Relaxing hidden api policy
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell ‘settings put global hidden_api_policy_pre_p_apps 1;settings put global hidden_api_policy_p_apps 1;settings put global hidden_api_policy 1’’
[AndroidDriver] Pushing settings apk to device…
[ADB] Getting package info for ‘io.appium.settings’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell dumpsys package io.appium.settings’
[ADB] The version name of the installed ‘io.appium.settings’ is greater or equal to the application version name (‘5.7.2’ >= ‘5.7.2’)
[ADB] There is no need to install/upgrade ‘C:\Users\Rsoft.appium\node_modules\appium-uiautomator2-driver\node_modules\io.appium.settings\apks\settings_apk-debug.apk’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell dumpsys activity services io.appium.settings’
[AndroidDriver] io.appium.settings is already running. There is no need to reset its permissions.
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell appops set io.appium.settings android:mock_location allow’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell “[ -e ‘/data/local/tmp/mock_apps.json’ ] && echo PASS”’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell cat /data/local/tmp/mock_apps.json’
[Logcat] Starting logs capture with command: C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR logcat -v threadtime
[AndroidUiautomator2Driver@44f2 (30d21d00)] Forwarding UiAutomator2 Server port 6790 to local port 8202
[ADB] Forwarding system: 8202 to device: 6790
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR forward tcp:8202 tcp:6790’
[ADB] Checking app cert for C:\Users\Rsoft.appium\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-v6.0.3.apk
[ADB] Checking app cert for C:\Users\Rsoft.appium\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-debug-androidTest.apk
[ADB] Using ‘apksigner.jar’ from ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\build-tools\34.0.0\lib\apksigner.jar’
[ADB] Starting apksigner: ‘C:\Program Files\Java\jdk-17\bin\java.exe’ -Xmx1024M -Xss1m -jar C:\Users\Rsoft\AppData\Local\Android\Sdk\build-tools\34.0.0\lib\apksigner.jar verify --print-certs C:\Users\Rsoft\.appium\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-debug-androidTest.apk
[ADB] Starting apksigner: ‘C:\Program Files\Java\jdk-17\bin\java.exe’ -Xmx1024M -Xss1m -jar C:\Users\Rsoft\AppData\Local\Android\Sdk\build-tools\34.0.0\lib\apksigner.jar verify --print-certs C:\Users\Rsoft\.appium\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-v6.0.3.apk[ADB] apksigner stdout: Signer #1 certificate DN: [email protected], CN=Android, OU=Android, O=Android, L=Mountain View, ST=California, C=US
[ADB] Signer #1 certificate SHA-256 digest: a40da80a59d170caa950cf15c18c454d47a39b26989d8b640ecd745ba71bf5dc
[ADB] Signer #1 certificate SHA-1 digest: 61ed377e85d386a8dfee6b864bd85b0bfaa5af81
[ADB] Signer #1 certificate MD5 digest: e89b158e4bcf988ebd09eb83f5378e87
[ADB]
[ADB] sha256 hash did match for ‘appium-uiautomator2-server-debug-androidTest.apk’
[ADB] ‘C:\Users\Rsoft.appium\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-debug-androidTest.apk’ is signed with the default certificate
[ADB] Getting install status for io.appium.uiautomator2.server.test
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell pm path io.appium.uiautomator2.server.test’
[ADB] ‘io.appium.uiautomator2.server.test’ is installed
[ADB] apksigner stdout: Signer #1 certificate DN: [email protected], CN=Android, OU=Android, O=Android, L=Mountain View, ST=California, C=US
[ADB] Signer #1 certificate SHA-256 digest: a40da80a59d170caa950cf15c18c454d47a39b26989d8b640ecd745ba71bf5dc
[ADB] Signer #1 certificate SHA-1 digest: 61ed377e85d386a8dfee6b864bd85b0bfaa5af81
[ADB] Signer #1 certificate MD5 digest: e89b158e4bcf988ebd09eb83f5378e87
[ADB]
[ADB] sha256 hash did match for ‘appium-uiautomator2-server-v6.0.3.apk’
[ADB] ‘C:\Users\Rsoft.appium\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-v6.0.3.apk’ is signed with the default certificate
[ADB] Getting package info for ‘io.appium.uiautomator2.server’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell dumpsys package io.appium.uiautomator2.server’
[ADB] The version name of the installed ‘io.appium.uiautomator2.server’ is greater or equal to the application version name (‘6.0.3’ >= ‘6.0.3’)
[AndroidUiautomator2Driver@44f2 (30d21d00)] Server packages status: [{“wasSigned”:true,“installState”:“sameVersionInstalled”,“appPath”:“C:\Users\Rsoft\.appium\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-v6.0.3.apk”,“appId”:“io.appium.uiautomator2.server”},{“wasSigned”:true,“installState”:“sameVersionInstalled”,“appPath”:“C:\Users\Rsoft\.appium\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-debug-androidTest.apk”,“appId”:“io.appium.uiautomator2.server.test”}]
[AndroidUiautomator2Driver@44f2 (30d21d00)] Server packages are not going to be (re)installed
[AndroidUiautomator2Driver@44f2 (30d21d00)] Waiting up to 30000ms for services to be available
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell pm list instrumentation’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Instrumentation target ‘io.appium.uiautomator2.server.test/androidx.test.runner.AndroidJUnitRunner’ is available
[ADB] Adding packages [“io.appium.settings”,“io.appium.uiautomator2.server”,“io.appium.uiautomator2.server.test”] to Doze whitelist
[ADB] Got the following command chunks to execute: [[“dumpsys”,“deviceidle”,“whitelist”,“+io.appium.settings”,“;”,“dumpsys”,“deviceidle”,“whitelist”,“+io.appium.uiautomator2.server”,“;”,“dumpsys”,“deviceidle”,“whitelist”,“+io.appium.uiautomator2.server.test”,“;”]]
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell dumpsys deviceidle whitelist +io.appium.settings ; dumpsys deviceidle whitelist +io.appium.uiautomator2.server ; dumpsys deviceidle whitelist +io.appium.uiautomator2.server.test ;’
[ADB] Checking app cert for D:\Automation\CRM_MB\src\test\resources\app-profile.apk
[ADB] Starting apksigner: ‘C:\Program Files\Java\jdk-17\bin\java.exe’ -Xmx1024M -Xss1m -jar C:\Users\Rsoft\AppData\Local\Android\Sdk\build-tools\34.0.0\lib\apksigner.jar verify --print-certs D:\Automation\CRM_MB\src\test\resources\app-profile.apk
[ADB] apksigner stdout: Signer #1 certificate DN: C=US, O=Android, CN=Android Debug
[ADB] Signer #1 certificate SHA-256 digest: e8673f7ad23225f0d052679fb7909528e307fc49e1b70ff481f7084aca0ac8fa
[ADB] Signer #1 certificate SHA-1 digest: 7bc0e400cc708083d52e831e23cb4dfa053a2f16
[ADB] Signer #1 certificate MD5 digest: 6e15642cd99ab929e1ee449c155be3f3
[ADB]
[ADB] ‘D:\Automation\CRM_MB\src\test\resources\app-profile.apk’ is signed with a non-default certificate
[ADB] Uninstalling com.example.automation
[ADB] Getting install status for com.example.automation
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell pm path com.example.automation’
[ADB] ‘com.example.automation’ is installed
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell am force-stop com.example.automation’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR uninstall com.example.automation’
[ADB] ‘adb uninstall com.example.automation’ command output: Success
[ADB] com.example.automation was successfully uninstalled
[ADB] Getting install status for com.example.automation
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell pm path com.example.automation’
[ADB] ‘com.example.automation’ is not installed
[AndroidDriver] Running full reset on ‘com.example.automation’ (reinstall)
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR help’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR features’
[ADB] The application at ‘D:\Automation\CRM_MB\src\test\resources\app-profile.apk’ will not be cached, because the device under test has confirmed the support of streamed installs
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR install -r -g D:\Automation\CRM_MB\src\test\resources\app-profile.apk’
[ADB] The installation of ‘app-profile.apk’ took 4738ms
[ADB] Install command stdout: Performing Streamed Install
[ADB] Success
[AndroidUiautomator2Driver@44f2 (30d21d00)] Performing shallow cleanup of automation leftovers
[AndroidUiautomator2Driver@44f2 (30d21d00)] The following obsolete sessions are still running: [“71bfeff8-ed59-460e-86b3-2c04400a99ae”]
[AndroidUiautomator2Driver@44f2 (30d21d00)] Cleaning up 1 obsolete session
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell am force-stop io.appium.uiautomator2.server.test’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Starting UIAutomator2 server 6.0.3
[AndroidUiautomator2Driver@44f2 (30d21d00)] Using UIAutomator2 server from ‘C:\Users\Rsoft.appium\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-v6.0.3.apk’ and test from ‘C:\Users\Rsoft.appium\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-debug-androidTest.apk’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Waiting up to 30000ms for UiAutomator2 to be online…
[ADB] Creating ADB subprocess with args: [“-P”,“5037”,“-s”,“R9ZR908HTNR”,“shell”,“am”,“instrument”,“-w”,“-e”,“disableAnalytics”,“true”,“io.appium.uiautomator2.server.test/androidx.test.runner.AndroidJUnitRunner”]
[AndroidUiautomator2Driver@44f2 (30d21d00)] Matched ‘/status’ to command name ‘getStatus’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [GET /status] to [GET http://127.0.0.1:8202/status] with no body
[AndroidUiautomator2Driver@44f2 (30d21d00)] socket hang up
[AndroidUiautomator2Driver@44f2 (30d21d00)] Matched ‘/status’ to command name ‘getStatus’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [GET /status] to [GET http://127.0.0.1:8202/status] with no body
[AndroidUiautomator2Driver@44f2 (30d21d00)] socket hang up
[AndroidUiautomator2Driver@44f2 (30d21d00)] Matched ‘/status’ to command name ‘getStatus’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [GET /status] to [GET http://127.0.0.1:8202/status] with no body
[AndroidUiautomator2Driver@44f2 (30d21d00)] socket hang up
[Instrumentation] io.appium.uiautomator2.server.test.AppiumUiAutomator2Server:
[AndroidUiautomator2Driver@44f2 (30d21d00)] Matched ‘/status’ to command name ‘getStatus’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [GET /status] to [GET http://127.0.0.1:8202/status] with no body
[AndroidUiautomator2Driver@44f2 (30d21d00)] socket hang up
[AndroidUiautomator2Driver@44f2 (30d21d00)] Matched ‘/status’ to command name ‘getStatus’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [GET /status] to [GET http://127.0.0.1:8202/status] with no body
[AndroidUiautomator2Driver@44f2 (30d21d00)] socket hang up
[HTTP] → GET /session/71c03e3f-caf7-4fa8-9956-fc8cffc9d6a0/timeouts
[HTTP] {}
[AppiumDriver@a142] Encountered internal error running command: NoSuchDriverError: A session is either terminated or not started
[AppiumDriver@a142] at asyncHandler (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules@appium\base-driver\lib\protocol\protocol.js:315:15)
[AppiumDriver@a142] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules@appium\base-driver\lib\protocol\protocol.js:518:15
[AppiumDriver@a142] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[AppiumDriver@a142] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\route.js:144:13)
[AppiumDriver@a142] at Route.dispatch (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\route.js:114:3)
[AppiumDriver@a142] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[AppiumDriver@a142] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:284:15
[AppiumDriver@a142] at param (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:365:14)
[AppiumDriver@a142] at param (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:376:14)
[AppiumDriver@a142] at Function.process_params (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:421:3)
[AppiumDriver@a142] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[AppiumDriver@a142] at logger (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\morgan\index.js:144:5)
[AppiumDriver@a142] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[AppiumDriver@a142] at trim_prefix (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[AppiumDriver@a142] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[AppiumDriver@a142] at Function.process_params (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[AppiumDriver@a142] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[AppiumDriver@a142] at jsonParser (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\body-parser\lib\types\json.js:113:7)
[AppiumDriver@a142] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[AppiumDriver@a142] at trim_prefix (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[AppiumDriver@a142] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[AppiumDriver@a142] at Function.process_params (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[AppiumDriver@a142] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[AppiumDriver@a142] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:91:12)
[AppiumDriver@a142] at trim_prefix (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[AppiumDriver@a142] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[AppiumDriver@a142] at Function.process_params (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[AppiumDriver@a142] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[AppiumDriver@a142] at methodOverride (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\method-override\index.js:65:14)
[AppiumDriver@a142] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[AppiumDriver@a142] at trim_prefix (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[AppiumDriver@a142] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[AppiumDriver@a142] at Function.process_params (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[AppiumDriver@a142] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[AppiumDriver@a142] at urlencodedParser (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\body-parser\lib\types\urlencoded.js:91:7)
[AppiumDriver@a142] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[AppiumDriver@a142] at trim_prefix (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[AppiumDriver@a142] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[AppiumDriver@a142] at Function.process_params (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[AppiumDriver@a142] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[AppiumDriver@a142] at defaultToJSONContentType (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules@appium\base-driver\lib\express\middleware.js:58:3)
[AppiumDriver@a142] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[AppiumDriver@a142] at trim_prefix (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[AppiumDriver@a142] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[AppiumDriver@a142] at Function.process_params (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[AppiumDriver@a142] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[AppiumDriver@a142] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules@appium\base-driver\lib\express\middleware.js:50:5
[AppiumDriver@a142] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[AppiumDriver@a142] at trim_prefix (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[AppiumDriver@a142] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[AppiumDriver@a142] at Function.process_params (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[AppiumDriver@a142] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[HTTP] ← GET /session/71c03e3f-caf7-4fa8-9956-fc8cffc9d6a0/timeouts 404 47 ms - 7421
[HTTP]
[AndroidUiautomator2Driver@44f2 (30d21d00)] Matched ‘/status’ to command name ‘getStatus’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [GET /status] to [GET http://127.0.0.1:8202/status] with no body
[AndroidUiautomator2Driver@44f2 (30d21d00)] Got response with status 200: {“sessionId”:“None”,“value”:{“message”:“UiAutomator2 Server is ready to accept commands”,“ready”:true}}
[AndroidUiautomator2Driver@44f2 (30d21d00)] The initialization of the instrumentation process took 5257ms
[AndroidUiautomator2Driver@44f2 (30d21d00)] Matched ‘/session’ to command name ‘createSession’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [POST /session] to [POST http://127.0.0.1:8202/session] with body: {“capabilities”:{“firstMatch”:[{“platformName”:“ANDROID”,“platformVersion”:“14.0”,“app”:“D:\Automation\CRM_MB\src\test\resources\app-profile.apk”,“automationName”:“UiAutomator2”,“appPackage”:“com.example.automation”,“autoDismissAlerts”:true,“autoGrantPermissions”:true,“appActivity”:“com.example.automation.MainActivity”,“fullReset”:true,“autoAcceptAlerts”:true,“deviceName”:“R9ZR908HTNR”,“noReset”:false,“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“platformName”:“ANDROID”,“platformVersion”:“14.0”,“app”:“D:\Automation\CRM_MB\src\test\resources\app-profile.apk”,“automationName”:“UiAutomator2”,“appPackage”:“com.example.automation”,“autoDismissAlerts”:true,“autoGrantPermissions”:true,“appActivity”:“com.example.automation.MainActivity”,“fullReset”:true,“autoAcceptAlerts”:true,“deviceName”:“R9ZR908HTNR”,“noReset”:false},“deviceUDID”:“R9ZR908HTNR…
[AndroidUiautomator2Driver@44f2 (30d21d00)] Got response with status 200: {“sessionId”:“d85822b2-9f40-448c-8400-bb972128d7f7”,“value”:{“capabilities”:{“firstMatch”:[{“platformName”:“ANDROID”,“platformVersion”:“14.0”,“app”:“D:\Automation\CRM_MB\src\test\resources\app-profile.apk”,“automationName”:“UiAutomator2”,“appPackage”:“com.example.automation”,“autoDismissAlerts”:true,“autoGrantPermissions”:true,“appActivity”:“com.example.automation.MainActivity”,“fullReset”:true,“autoAcceptAlerts”:true,“deviceName”:“R9ZR908HTNR”,“noReset”:false,“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“platformName”:“ANDROID”,“platformVersion”:“14.0”,“app”:“D:\Automation\CRM_MB\src\test\resources\app-profile.apk”,“automationName”:“UiAutomator2”,“appPackage”:“com.example.automation”,“autoDismissAlerts”:true,“autoGrantPermissions”:true,“appActivity”:“com.example.automation.MainActivity”,“fullReset”:true,“autoAcceptAlerts”:true,“deviceNa…
[AndroidUiautomator2Driver@44f2 (30d21d00)] Determined the downstream protocol as ‘W3C’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [GET /appium/device/pixel_ratio] to [GET http://127.0.0.1:8202/session/d85822b2-9f40-448c-8400-bb972128d7f7/appium/device/pixel_ratio] with no body
[AndroidUiautomator2Driver@44f2 (30d21d00)] Matched ‘/appium/device/system_bars’ to command name ‘getSystemBars’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [GET /appium/device/system_bars] to [GET http://127.0.0.1:8202/session/d85822b2-9f40-448c-8400-bb972128d7f7/appium/device/system_bars] with no body
[AndroidUiautomator2Driver@44f2 (30d21d00)] Matched ‘/window/current/size’ to command name ‘getWindowSize’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [GET /window/current/size] to [GET http://127.0.0.1:8202/session/d85822b2-9f40-448c-8400-bb972128d7f7/window/current/size] with no body
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [GET /appium/device/info] to [GET http://127.0.0.1:8202/session/d85822b2-9f40-448c-8400-bb972128d7f7/appium/device/info] with no body
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell dumpsys window’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Got response with status 200: {“sessionId”:“d85822b2-9f40-448c-8400-bb972128d7f7”,“value”:1.3312501}
[AndroidUiautomator2Driver@44f2 (30d21d00)] Got response with status 200: {“sessionId”:“d85822b2-9f40-448c-8400-bb972128d7f7”,“value”:{“statusBar”:32}}
[AndroidUiautomator2Driver@44f2 (30d21d00)] Got response with status 200: {“sessionId”:“d85822b2-9f40-448c-8400-bb972128d7f7”,“value”:{“height”:1340,“width”:800}}
[AndroidUiautomator2Driver@44f2 (30d21d00)] Got response with status 200: {“sessionId”:“d85822b2-9f40-448c-8400-bb972128d7f7”,“value”:{“androidId”:“c16c00e2b60ac933”,“apiVersion”:“34”,“bluetooth”:{“state”:“ON”},“brand”:“samsung”,“carrierName”:””,“displayDensity”:213,“locale”:“en_IN”,“manufacturer”:“samsung”,“model”:“SM-T220”,“networks”:[{“capabilities”:{“SSID”:null,“linkDownBandwidthKbps”:60000,“linkUpstreamBandwidthKbps”:12000,“networkCapabilities”:“NET_CAPABILITY_NOT_METERED,NET_CAPABILITY_INTERNET,NET_CAPABILITY_NOT_RESTRICTED,NET_CAPABILITY_TRUSTED,NET_CAPABILITY_NOT_VPN,NET_CAPABILITY_VALIDATED,NET_CAPABILITY_NOT_ROAMING,NET_CAPABILITY_FOREGROUND,NET_CAPABILITY_NOT_CONGESTED,NET_CAPABILITY_NOT_SUSPENDED”,“signalStrength”:-66,“transportTypes”:“TRANSPORT_WIFI”},“detailedState”:“CONNECTED”,“extraInfo”:“”,“isAvailable”:true,“isConnected”:true,“isFailover”:false,“isRoaming”:false,“state”:“CONNECTED”,“subtype”:-1,“subtypeName”:“”,“type”:1,“typeName”:“WIFI”}],“platformVersion”:“14”,“realDisplaySize”:“800x1340”,“timeZone”:“Asia/Calcutta”}}
[AndroidDriver] Screen is locked, trying to unlock
[AndroidDriver] Neither ‘unlockType’ nor ‘unlockKey’ capability is provided. Assuming the device is locked with a simple lock screen.
[ADB] Waking up the device to dismiss the keyguard
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell input keyevent 26’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell input keyevent 224’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell wm dismiss-keyguard’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Starting 'com.example.automation/com.example.automation.MainActivity and waiting for ‘com.example.automation/com.example.automation.MainActivity’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell am start -W -n com.example.automation/com.example.automation.MainActivity -S -a android.intent.action.MAIN -c android.intent.category.LAUNCHER -f 0x10200000’
[AppiumDriver@a142] New AndroidUiautomator2Driver session created successfully, session 30d21d00-d71e-46fc-a10c-c06cfc079142 added to master session list
[AppiumDriver@a142] Event ‘newSessionStarted’ logged at 1716808376203 (16:42:56 GMT+0530 (India Standard Time))
[AppiumDriver@a142] Promoting 1 sessionless plugins to be attached to session ID 30d21d00-d71e-46fc-a10c-c06cfc079142
[AndroidUiautomator2Driver@44f2 (30d21d00)] Cached the protocol value ‘W3C’ for the new session 30d21d00-d71e-46fc-a10c-c06cfc079142
[AndroidUiautomator2Driver@44f2 (30d21d00)] Responding to client with driver.createSession() result: {“capabilities”:{“platformName”:“ANDROID”,“platformVersion”:“14”,“app”:“D:\Automation\CRM_MB\src\test\resources\app-profile.apk”,“automationName”:“UiAutomator2”,“appPackage”:“com.example.automation”,“autoDismissAlerts”:true,“autoGrantPermissions”:true,“appActivity”:“com.example.automation.MainActivity”,“fullReset”:true,“autoAcceptAlerts”:true,“deviceName”:“R9ZR908HTNR”,“noReset”:false,“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“platformName”:“ANDROID”,“platformVersion”:“14.0”,“app”:“D:\Automation\CRM_MB\src\test\resources\app-profile.apk”,“automationName”:“UiAutomator2”,“appPackage”:“com.example.automation”,“autoDismissAlerts”:true,“autoGrantPermissions”:true,“appActivity”:“com.example.automation.MainActivity”,“fullReset”:true,“autoAcceptAlerts”:true,“deviceName”:“R9ZR908HTNR”,“noReset”:false},“deviceUDID”:“R9ZR908HTNR”,“pixelRatio”:“1…
[HTTP] ← POST /session 200 19809 ms - 1304
[HTTP]
[HTTP] → POST /session/30d21d00-d71e-46fc-a10c-c06cfc079142/timeouts
[HTTP] {“implicit”:10000}
[AndroidUiautomator2Driver@44f2 (30d21d00)] Calling AppiumDriver.timeouts() with args: [null,null,null,null,10000,“30d21d00-d71e-46fc-a10c-c06cfc079142”]
[AndroidUiautomator2Driver@44f2 (30d21d00)] W3C timeout argument: {“implicit”:10000}}
[AndroidUiautomator2Driver@44f2 (30d21d00)] Set implicit wait to 10000ms
[AndroidUiautomator2Driver@44f2 (30d21d00)] Responding to client with driver.timeouts() result: null
[HTTP] ← POST /session/30d21d00-d71e-46fc-a10c-c06cfc079142/timeouts 200 6 ms - 14
[HTTP]
[HTTP] → GET /session/30d21d00-d71e-46fc-a10c-c06cfc079142/context
[HTTP] {}
[AndroidUiautomator2Driver@44f2 (30d21d00)] Calling AppiumDriver.getCurrentContext() with args: [“30d21d00-d71e-46fc-a10c-c06cfc079142”]
[AndroidUiautomator2Driver@44f2 (30d21d00)] Responding to client with driver.getCurrentContext() result: “NATIVE_APP”
[HTTP] ← GET /session/30d21d00-d71e-46fc-a10c-c06cfc079142/context 200 10 ms - 22
[HTTP]
[HTTP] → POST /session/30d21d00-d71e-46fc-a10c-c06cfc079142/element
[HTTP] {“using”:“id”,“value”:“age_field”}
[AndroidUiautomator2Driver@44f2 (30d21d00)] Calling AppiumDriver.findElement() with args: [“id”,“age_field”,“30d21d00-d71e-46fc-a10c-c06cfc079142”]
[AndroidUiautomator2Driver@44f2 (30d21d00)] Valid locator strategies for this request: xpath, id, class name, accessibility id, css selector, -android uiautomator
[AndroidUiautomator2Driver@44f2 (30d21d00)] Waiting up to 10000 ms for condition
[AndroidUiautomator2Driver@44f2 (30d21d00)] Matched ‘/element’ to command name ‘findElement’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [POST /element] to [POST http://127.0.0.1:8202/session/d85822b2-9f40-448c-8400-bb972128d7f7/element] with body: {“strategy”:“id”,“selector”:“age_field”,“context”:”“,“multiple”:false}
[AndroidUiautomator2Driver@44f2 (30d21d00)] Got response with status 404: {“sessionId”:“d85822b2-9f40-448c-8400-bb972128d7f7”,“value”:{“error”:“no such element”,“message”:“An element could not be located on the page using the given search parameters”,“stacktrace”:“io.appium.uiautomator2.common.exceptions.ElementNotFoundException: An element could not be located on the page using the given search parameters\n\tat io.appium.uiautomator2.handler.FindElement.safeHandle(FindElement.java:63)\n\tat io.appium.uiautomator2.handler.request.SafeRequestHandler.handle(SafeRequestHandler.java:59)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleRequest(AppiumServlet.java:277)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleHttpRequest(AppiumServlet.java:271)\n\tat io.appium.uiautomator2.http.ServerHandler.channelRead(ServerHandler.java:77)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:366)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:352)\n\tat io.netty.chann…
[W3C] Matched W3C error code ‘no such element’ to NoSuchElementError
[AndroidUiautomator2Driver@44f2 (30d21d00)] Waited for 227 ms so far
[AndroidUiautomator2Driver@44f2 (30d21d00)] Matched ‘/element’ to command name ‘findElement’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [POST /element] to [POST http://127.0.0.1:8202/session/d85822b2-9f40-448c-8400-bb972128d7f7/element] with body: {“strategy”:“id”,“selector”:“age_field”,“context”:””,“multiple”:false}
[AndroidUiautomator2Driver@44f2 (30d21d00)] Got response with status 404: {“sessionId”:“d85822b2-9f40-448c-8400-bb972128d7f7”,“value”:{“error”:“no such element”,“message”:“An element could not be located on the page using the given search parameters”,“stacktrace”:“io.appium.uiautomator2.common.exceptions.ElementNotFoundException: An element could not be located on the page using the given search parameters\n\tat io.appium.uiautomator2.handler.FindElement.safeHandle(FindElement.java:63)\n\tat io.appium.uiautomator2.handler.request.SafeRequestHandler.handle(SafeRequestHandler.java:59)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleRequest(AppiumServlet.java:277)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleHttpRequest(AppiumServlet.java:271)\n\tat io.appium.uiautomator2.http.ServerHandler.channelRead(ServerHandler.java:77)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:366)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:352)\n\tat io.netty.chann…
[W3C] Matched W3C error code ‘no such element’ to NoSuchElementError
[AndroidUiautomator2Driver@44f2 (30d21d00)] Waited for 886 ms so far
[AndroidUiautomator2Driver@44f2 (30d21d00)] Matched ‘/element’ to command name ‘findElement’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [POST /element] to [POST http://127.0.0.1:8202/session/d85822b2-9f40-448c-8400-bb972128d7f7/element] with body: {“strategy”:“id”,“selector”:“age_field”,“context”:”“,“multiple”:false}
[AndroidUiautomator2Driver@44f2 (30d21d00)] Got response with status 404: {“sessionId”:“d85822b2-9f40-448c-8400-bb972128d7f7”,“value”:{“error”:“no such element”,“message”:“An element could not be located on the page using the given search parameters”,“stacktrace”:“io.appium.uiautomator2.common.exceptions.ElementNotFoundException: An element could not be located on the page using the given search parameters\n\tat io.appium.uiautomator2.handler.FindElement.safeHandle(FindElement.java:63)\n\tat io.appium.uiautomator2.handler.request.SafeRequestHandler.handle(SafeRequestHandler.java:59)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleRequest(AppiumServlet.java:277)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleHttpRequest(AppiumServlet.java:271)\n\tat io.appium.uiautomator2.http.ServerHandler.channelRead(ServerHandler.java:77)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:366)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:352)\n\tat io.netty.chann…
[W3C] Matched W3C error code ‘no such element’ to NoSuchElementError
[AndroidUiautomator2Driver@44f2 (30d21d00)] Waited for 1571 ms so far
[AndroidUiautomator2Driver@44f2 (30d21d00)] Matched ‘/element’ to command name ‘findElement’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [POST /element] to [POST http://127.0.0.1:8202/session/d85822b2-9f40-448c-8400-bb972128d7f7/element] with body: {“strategy”:“id”,“selector”:“age_field”,“context”:””,“multiple”:false}
[AndroidUiautomator2Driver@44f2 (30d21d00)] Got response with status 404: {“sessionId”:“d85822b2-9f40-448c-8400-bb972128d7f7”,“value”:{“error”:“no such element”,“message”:“An element could not be located on the page using the given search parameters”,“stacktrace”:“io.appium.uiautomator2.common.exceptions.ElementNotFoundException: An element could not be located on the page using the given search parameters\n\tat io.appium.uiautomator2.handler.FindElement.safeHandle(FindElement.java:63)\n\tat io.appium.uiautomator2.handler.request.SafeRequestHandler.handle(SafeRequestHandler.java:59)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleRequest(AppiumServlet.java:277)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleHttpRequest(AppiumServlet.java:271)\n\tat io.appium.uiautomator2.http.ServerHandler.channelRead(ServerHandler.java:77)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:366)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:352)\n\tat io.netty.chann…
[W3C] Matched W3C error code ‘no such element’ to NoSuchElementError
[AndroidUiautomator2Driver@44f2 (30d21d00)] Waited for 2288 ms so far
[AndroidUiautomator2Driver@44f2 (30d21d00)] Matched ‘/element’ to command name ‘findElement’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [POST /element] to [POST http://127.0.0.1:8202/session/d85822b2-9f40-448c-8400-bb972128d7f7/element] with body: {“strategy”:“id”,“selector”:“age_field”,“context”:”“,“multiple”:false}
[AndroidUiautomator2Driver@44f2 (30d21d00)] Got response with status 404: {“sessionId”:“d85822b2-9f40-448c-8400-bb972128d7f7”,“value”:{“error”:“no such element”,“message”:“An element could not be located on the page using the given search parameters”,“stacktrace”:“io.appium.uiautomator2.common.exceptions.ElementNotFoundException: An element could not be located on the page using the given search parameters\n\tat io.appium.uiautomator2.handler.FindElement.safeHandle(FindElement.java:63)\n\tat io.appium.uiautomator2.handler.request.SafeRequestHandler.handle(SafeRequestHandler.java:59)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleRequest(AppiumServlet.java:277)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleHttpRequest(AppiumServlet.java:271)\n\tat io.appium.uiautomator2.http.ServerHandler.channelRead(ServerHandler.java:77)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:366)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:352)\n\tat io.netty.chann…
[W3C] Matched W3C error code ‘no such element’ to NoSuchElementError
[AndroidUiautomator2Driver@44f2 (30d21d00)] Waited for 2959 ms so far
[AndroidUiautomator2Driver@44f2 (30d21d00)] Matched ‘/element’ to command name ‘findElement’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [POST /element] to [POST http://127.0.0.1:8202/session/d85822b2-9f40-448c-8400-bb972128d7f7/element] with body: {“strategy”:“id”,“selector”:“age_field”,“context”:””,“multiple”:false}
[AndroidUiautomator2Driver@44f2 (30d21d00)] Got response with status 404: {“sessionId”:“d85822b2-9f40-448c-8400-bb972128d7f7”,“value”:{“error”:“no such element”,“message”:“An element could not be located on the page using the given search parameters”,“stacktrace”:“io.appium.uiautomator2.common.exceptions.ElementNotFoundException: An element could not be located on the page using the given search parameters\n\tat io.appium.uiautomator2.handler.FindElement.safeHandle(FindElement.java:63)\n\tat io.appium.uiautomator2.handler.request.SafeRequestHandler.handle(SafeRequestHandler.java:59)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleRequest(AppiumServlet.java:277)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleHttpRequest(AppiumServlet.java:271)\n\tat io.appium.uiautomator2.http.ServerHandler.channelRead(ServerHandler.java:77)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:366)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:352)\n\tat io.netty.chann…
[W3C] Matched W3C error code ‘no such element’ to NoSuchElementError
[AndroidUiautomator2Driver@44f2 (30d21d00)] Waited for 3632 ms so far
[AndroidUiautomator2Driver@44f2 (30d21d00)] Matched ‘/element’ to command name ‘findElement’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [POST /element] to [POST http://127.0.0.1:8202/session/d85822b2-9f40-448c-8400-bb972128d7f7/element] with body: {“strategy”:“id”,“selector”:“age_field”,“context”:”“,“multiple”:false}
[AndroidUiautomator2Driver@44f2 (30d21d00)] Got response with status 404: {“sessionId”:“d85822b2-9f40-448c-8400-bb972128d7f7”,“value”:{“error”:“no such element”,“message”:“An element could not be located on the page using the given search parameters”,“stacktrace”:“io.appium.uiautomator2.common.exceptions.ElementNotFoundException: An element could not be located on the page using the given search parameters\n\tat io.appium.uiautomator2.handler.FindElement.safeHandle(FindElement.java:63)\n\tat io.appium.uiautomator2.handler.request.SafeRequestHandler.handle(SafeRequestHandler.java:59)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleRequest(AppiumServlet.java:277)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleHttpRequest(AppiumServlet.java:271)\n\tat io.appium.uiautomator2.http.ServerHandler.channelRead(ServerHandler.java:77)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:366)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:352)\n\tat io.netty.chann…
[W3C] Matched W3C error code ‘no such element’ to NoSuchElementError
[AndroidUiautomator2Driver@44f2 (30d21d00)] Waited for 4294 ms so far
[AndroidUiautomator2Driver@44f2 (30d21d00)] Matched ‘/element’ to command name ‘findElement’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [POST /element] to [POST http://127.0.0.1:8202/session/d85822b2-9f40-448c-8400-bb972128d7f7/element] with body: {“strategy”:“id”,“selector”:“age_field”,“context”:””,“multiple”:false}
[AndroidUiautomator2Driver@44f2 (30d21d00)] Got response with status 404: {“sessionId”:“d85822b2-9f40-448c-8400-bb972128d7f7”,“value”:{“error”:“no such element”,“message”:“An element could not be located on the page using the given search parameters”,“stacktrace”:“io.appium.uiautomator2.common.exceptions.ElementNotFoundException: An element could not be located on the page using the given search parameters\n\tat io.appium.uiautomator2.handler.FindElement.safeHandle(FindElement.java:63)\n\tat io.appium.uiautomator2.handler.request.SafeRequestHandler.handle(SafeRequestHandler.java:59)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleRequest(AppiumServlet.java:277)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleHttpRequest(AppiumServlet.java:271)\n\tat io.appium.uiautomator2.http.ServerHandler.channelRead(ServerHandler.java:77)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:366)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:352)\n\tat io.netty.chann…
[W3C] Matched W3C error code ‘no such element’ to NoSuchElementError
[AndroidUiautomator2Driver@44f2 (30d21d00)] Waited for 4963 ms so far
[AndroidUiautomator2Driver@44f2 (30d21d00)] Matched ‘/element’ to command name ‘findElement’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [POST /element] to [POST http://127.0.0.1:8202/session/d85822b2-9f40-448c-8400-bb972128d7f7/element] with body: {“strategy”:“id”,“selector”:“age_field”,“context”:”“,“multiple”:false}
[AndroidUiautomator2Driver@44f2 (30d21d00)] Got response with status 404: {“sessionId”:“d85822b2-9f40-448c-8400-bb972128d7f7”,“value”:{“error”:“no such element”,“message”:“An element could not be located on the page using the given search parameters”,“stacktrace”:“io.appium.uiautomator2.common.exceptions.ElementNotFoundException: An element could not be located on the page using the given search parameters\n\tat io.appium.uiautomator2.handler.FindElement.safeHandle(FindElement.java:63)\n\tat io.appium.uiautomator2.handler.request.SafeRequestHandler.handle(SafeRequestHandler.java:59)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleRequest(AppiumServlet.java:277)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleHttpRequest(AppiumServlet.java:271)\n\tat io.appium.uiautomator2.http.ServerHandler.channelRead(ServerHandler.java:77)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:366)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:352)\n\tat io.netty.chann…
[W3C] Matched W3C error code ‘no such element’ to NoSuchElementError
[AndroidUiautomator2Driver@44f2 (30d21d00)] Waited for 5646 ms so far
[AndroidUiautomator2Driver@44f2 (30d21d00)] Matched ‘/element’ to command name ‘findElement’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [POST /element] to [POST http://127.0.0.1:8202/session/d85822b2-9f40-448c-8400-bb972128d7f7/element] with body: {“strategy”:“id”,“selector”:“age_field”,“context”:””,“multiple”:false}
[AndroidUiautomator2Driver@44f2 (30d21d00)] Got response with status 404: {“sessionId”:“d85822b2-9f40-448c-8400-bb972128d7f7”,“value”:{“error”:“no such element”,“message”:“An element could not be located on the page using the given search parameters”,“stacktrace”:“io.appium.uiautomator2.common.exceptions.ElementNotFoundException: An element could not be located on the page using the given search parameters\n\tat io.appium.uiautomator2.handler.FindElement.safeHandle(FindElement.java:63)\n\tat io.appium.uiautomator2.handler.request.SafeRequestHandler.handle(SafeRequestHandler.java:59)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleRequest(AppiumServlet.java:277)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleHttpRequest(AppiumServlet.java:271)\n\tat io.appium.uiautomator2.http.ServerHandler.channelRead(ServerHandler.java:77)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:366)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:352)\n\tat io.netty.chann…
[W3C] Matched W3C error code ‘no such element’ to NoSuchElementError
[AndroidUiautomator2Driver@44f2 (30d21d00)] Waited for 6308 ms so far
[AndroidUiautomator2Driver@44f2 (30d21d00)] Matched ‘/element’ to command name ‘findElement’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [POST /element] to [POST http://127.0.0.1:8202/session/d85822b2-9f40-448c-8400-bb972128d7f7/element] with body: {“strategy”:“id”,“selector”:“age_field”,“context”:”“,“multiple”:false}
[AndroidUiautomator2Driver@44f2 (30d21d00)] Got response with status 404: {“sessionId”:“d85822b2-9f40-448c-8400-bb972128d7f7”,“value”:{“error”:“no such element”,“message”:“An element could not be located on the page using the given search parameters”,“stacktrace”:“io.appium.uiautomator2.common.exceptions.ElementNotFoundException: An element could not be located on the page using the given search parameters\n\tat io.appium.uiautomator2.handler.FindElement.safeHandle(FindElement.java:63)\n\tat io.appium.uiautomator2.handler.request.SafeRequestHandler.handle(SafeRequestHandler.java:59)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleRequest(AppiumServlet.java:277)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleHttpRequest(AppiumServlet.java:271)\n\tat io.appium.uiautomator2.http.ServerHandler.channelRead(ServerHandler.java:77)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:366)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:352)\n\tat io.netty.chann…
[W3C] Matched W3C error code ‘no such element’ to NoSuchElementError
[AndroidUiautomator2Driver@44f2 (30d21d00)] Waited for 6976 ms so far
[AndroidUiautomator2Driver@44f2 (30d21d00)] Matched ‘/element’ to command name ‘findElement’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [POST /element] to [POST http://127.0.0.1:8202/session/d85822b2-9f40-448c-8400-bb972128d7f7/element] with body: {“strategy”:“id”,“selector”:“age_field”,“context”:””,“multiple”:false}
[AndroidUiautomator2Driver@44f2 (30d21d00)] Got response with status 404: {“sessionId”:“d85822b2-9f40-448c-8400-bb972128d7f7”,“value”:{“error”:“no such element”,“message”:“An element could not be located on the page using the given search parameters”,“stacktrace”:“io.appium.uiautomator2.common.exceptions.ElementNotFoundException: An element could not be located on the page using the given search parameters\n\tat io.appium.uiautomator2.handler.FindElement.safeHandle(FindElement.java:63)\n\tat io.appium.uiautomator2.handler.request.SafeRequestHandler.handle(SafeRequestHandler.java:59)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleRequest(AppiumServlet.java:277)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleHttpRequest(AppiumServlet.java:271)\n\tat io.appium.uiautomator2.http.ServerHandler.channelRead(ServerHandler.java:77)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:366)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:352)\n\tat io.netty.chann…
[W3C] Matched W3C error code ‘no such element’ to NoSuchElementError
[AndroidUiautomator2Driver@44f2 (30d21d00)] Waited for 7626 ms so far
[AndroidUiautomator2Driver@44f2 (30d21d00)] Matched ‘/element’ to command name ‘findElement’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [POST /element] to [POST http://127.0.0.1:8202/session/d85822b2-9f40-448c-8400-bb972128d7f7/element] with body: {“strategy”:“id”,“selector”:“age_field”,“context”:”“,“multiple”:false}
[AndroidUiautomator2Driver@44f2 (30d21d00)] Got response with status 404: {“sessionId”:“d85822b2-9f40-448c-8400-bb972128d7f7”,“value”:{“error”:“no such element”,“message”:“An element could not be located on the page using the given search parameters”,“stacktrace”:“io.appium.uiautomator2.common.exceptions.ElementNotFoundException: An element could not be located on the page using the given search parameters\n\tat io.appium.uiautomator2.handler.FindElement.safeHandle(FindElement.java:63)\n\tat io.appium.uiautomator2.handler.request.SafeRequestHandler.handle(SafeRequestHandler.java:59)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleRequest(AppiumServlet.java:277)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleHttpRequest(AppiumServlet.java:271)\n\tat io.appium.uiautomator2.http.ServerHandler.channelRead(ServerHandler.java:77)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:366)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:352)\n\tat io.netty.chann…
[W3C] Matched W3C error code ‘no such element’ to NoSuchElementError
[AndroidUiautomator2Driver@44f2 (30d21d00)] Waited for 8281 ms so far
[AndroidUiautomator2Driver@44f2 (30d21d00)] Matched ‘/element’ to command name ‘findElement’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [POST /element] to [POST http://127.0.0.1:8202/session/d85822b2-9f40-448c-8400-bb972128d7f7/element] with body: {“strategy”:“id”,“selector”:“age_field”,“context”:””,“multiple”:false}
[AndroidUiautomator2Driver@44f2 (30d21d00)] Got response with status 404: {“sessionId”:“d85822b2-9f40-448c-8400-bb972128d7f7”,“value”:{“error”:“no such element”,“message”:“An element could not be located on the page using the given search parameters”,“stacktrace”:“io.appium.uiautomator2.common.exceptions.ElementNotFoundException: An element could not be located on the page using the given search parameters\n\tat io.appium.uiautomator2.handler.FindElement.safeHandle(FindElement.java:63)\n\tat io.appium.uiautomator2.handler.request.SafeRequestHandler.handle(SafeRequestHandler.java:59)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleRequest(AppiumServlet.java:277)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleHttpRequest(AppiumServlet.java:271)\n\tat io.appium.uiautomator2.http.ServerHandler.channelRead(ServerHandler.java:77)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:366)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:352)\n\tat io.netty.chann…
[W3C] Matched W3C error code ‘no such element’ to NoSuchElementError
[AndroidUiautomator2Driver@44f2 (30d21d00)] Waited for 8892 ms so far
[AndroidUiautomator2Driver@44f2 (30d21d00)] Matched ‘/element’ to command name ‘findElement’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [POST /element] to [POST http://127.0.0.1:8202/session/d85822b2-9f40-448c-8400-bb972128d7f7/element] with body: {“strategy”:“id”,“selector”:“age_field”,“context”:”“,“multiple”:false}
[AndroidUiautomator2Driver@44f2 (30d21d00)] Got response with status 404: {“sessionId”:“d85822b2-9f40-448c-8400-bb972128d7f7”,“value”:{“error”:“no such element”,“message”:“An element could not be located on the page using the given search parameters”,“stacktrace”:“io.appium.uiautomator2.common.exceptions.ElementNotFoundException: An element could not be located on the page using the given search parameters\n\tat io.appium.uiautomator2.handler.FindElement.safeHandle(FindElement.java:63)\n\tat io.appium.uiautomator2.handler.request.SafeRequestHandler.handle(SafeRequestHandler.java:59)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleRequest(AppiumServlet.java:277)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleHttpRequest(AppiumServlet.java:271)\n\tat io.appium.uiautomator2.http.ServerHandler.channelRead(ServerHandler.java:77)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:366)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:352)\n\tat io.netty.chann…
[W3C] Matched W3C error code ‘no such element’ to NoSuchElementError
[AndroidUiautomator2Driver@44f2 (30d21d00)] Waited for 9569 ms so far
[AndroidUiautomator2Driver@44f2 (30d21d00)] Matched ‘/element’ to command name ‘findElement’
[AndroidUiautomator2Driver@44f2 (30d21d00)] Proxying [POST /element] to [POST http://127.0.0.1:8202/session/d85822b2-9f40-448c-8400-bb972128d7f7/element] with body: {“strategy”:“id”,“selector”:“age_field”,“context”:””,“multiple”:false}
[AndroidUiautomator2Driver@44f2 (30d21d00)] Got response with status 404: {“sessionId”:“d85822b2-9f40-448c-8400-bb972128d7f7”,“value”:{“error”:“no such element”,“message”:“An element could not be located on the page using the given search parameters”,“stacktrace”:"io.appium.uiautomator2.common.exceptions.ElementNotFoundException: An element could not be located on the page using the given search parameters\n\tat io.appium.uiautomator2.handler.FindElement.safeHandle(FindElement.java:63)\n\tat io.appium.uiautomator2.handler.request.SafeRequestHandler.handle(SafeRequestHandler.java:59)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleRequest(AppiumServlet.java:277)\n\tat io.appium.uiautomator2.server.AppiumServlet.handleHttpRequest(AppiumServlet.java:271)\n\tat io.appium.uiautomator2.http.ServerHandler.channelRead(ServerHandler.java:77)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:366)\n\tat io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:352)\n\tat io.netty.chann…
[W3C] Matched W3C error code ‘no such element’ to NoSuchElementError
[AndroidUiautomator2Driver@44f2 (30d21d00)] Encountered internal error running command: NoSuchElementError: An element could not be located on the page using the given search parameters.
[AndroidUiautomator2Driver@44f2 (30d21d00)] at AndroidUiautomator2Driver.findElOrEls (C:\Users\Rsoft.appium\node_modules\appium-uiautomator2-driver\node_modules\appium-android-driver\lib\commands\find.ts:87:11)
[AndroidUiautomator2Driver@44f2 (30d21d00)] at processTicksAndRejections (node:internal/process/task_queues:95:5)
[AndroidUiautomator2Driver@44f2 (30d21d00)] at AndroidUiautomator2Driver.findElOrElsWithProcessing (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules@appium\base-driver\lib\basedriver\commands\find.ts:60:12)
[AndroidUiautomator2Driver@44f2 (30d21d00)] at AndroidUiautomator2Driver.findElement (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules@appium\base-driver\lib\basedriver\commands\find.ts:75:12)
[HTTP] ← POST /session/30d21d00-d71e-46fc-a10c-c06cfc079142/element 404 10161 ms – 890

Log for Automation Name as Flutter
C:\Users\Rsoft>appium --use-plugins=gestures
[Appium] Attempting to load plugin gestures…
[Appium] Requiring plugin at C:\Users\Rsoft.appium\node_modules\appium-gestures-plugin\lib\index.js
[Appium] GesturesPlugin has been successfully loaded in 0.687s
[Appium] Welcome to Appium v2.4.1
[Appium] Non-default server args:
[Appium] {
[Appium] usePlugins: [
[Appium] ‘gestures’
[Appium] ]
[Appium] }
[Appium] The autodetected Appium home path: C:\Users\Rsoft.appium
[Appium] Attempting to load driver uiautomator2…
[Appium] Attempting to load driver chromium…
[Appium] Attempting to load driver flutter…
[Appium] Requiring driver at C:\Users\Rsoft.appium\node_modules\appium-uiautomator2-driver\build\index.js
[Appium] AndroidUiautomator2Driver has been successfully loaded in 0.844s
[Appium] Requiring driver at C:\Users\Rsoft.appium\node_modules\appium-chromium-driver\index.js
[Appium] ChromiumDriver has been successfully loaded in 1.548s
[Appium] Requiring driver at C:\Users\Rsoft.appium\node_modules\appium-flutter-driver\build\lib\driver.js
[Appium] FlutterDriver has been successfully loaded in 3.913s
[Appium] Appium REST http interface listener started on http://0.0.0.0:4723
[Appium] You can provide the following URLs in your client code to connect to this server:
[Appium] http://192.168.31.5:4723/
[Appium] http://127.0.0.1:4723/ (only accessible from the same host)
[Appium] Available drivers:
[Appium] - [email protected] (automationName ‘UiAutomator2’)
[Appium] - [email protected] (automationName ‘Chromium’)
[Appium] - [email protected] (automationName ‘Flutter’)
[Appium] Available plugins:
[Appium] - [email protected] (ACTIVE)
[HTTP] → GET /status
[HTTP] {}
[AppiumDriver@018e] Calling AppiumDriver.getStatus() with args:
[AppiumDriver@018e] Responding to client with driver.getStatus() result: {“ready”:true,“message”:“The server is ready to accept new connections”,“build”:{“version”:“2.4.1”}}
[HTTP] ← GET /status 200 6 ms - 110
[HTTP]
[HTTP] Request idempotency key: 1bb33780-7109-41b8-bd0d-3ebcf2b6b869
[HTTP] → POST /session
[HTTP] {“capabilities”:{“firstMatch”:[{}],“alwaysMatch”:{“appium:autoGrantPermissions”:true,“appium:autoDismissAlerts”:true,“appium:appPackage”:“com.example.automation”,“appium:automationName”:“Flutter”,“appium:app”:“D:\Automation\CRM_MB\src\test\resources\app-profile.apk”,“appium:platformVersion”:“14.0”,“appium:noReset”:false,“appium:deviceName”:“R9ZR908HTNR”,“platformName”:“ANDROID”,“appium:autoAcceptAlerts”:true,“appium:fullReset”:true,“appium:appActivity”:“com.example.automation.MainActivity”}}}
[AppiumDriver@018e] Calling AppiumDriver.createSession() with args: [null,null,{“firstMatch”:[{}],“alwaysMatch”:{“appium:autoGrantPermissions”:true,“appium:autoDismissAlerts”:true,“appium:appPackage”:“com.example.automation”,“appium:automationName”:“Flutter”,“appium:app”:“D:\Automation\CRM_MB\src\test\resources\app-profile.apk”,“appium:platformVersion”:“14.0”,“appium:noReset”:false,“appium:deviceName”:“R9ZR908HTNR”,“platformName”:“ANDROID”,“appium:autoAcceptAlerts”:true,“appium:fullReset”:true,“appium:appActivity”:“com.example.automation.MainActivity”}}]
[AppiumDriver@018e] Event ‘newSessionRequested’ logged at 1716808489843 (16:44:49 GMT+0530 (India Standard Time))
[Appium] Attempting to find matching driver for automationName ‘Flutter’ and platformName ‘ANDROID’
[Appium] The ‘flutter’ driver was installed and matched caps.
[Appium] Will require it at C:\Users\Rsoft.appium\node_modules\appium-flutter-driver
[Appium] Requiring driver at C:\Users\Rsoft.appium\node_modules\appium-flutter-driver\build\lib\driver.js
[AppiumDriver@018e] Appium v2.4.1 creating new FlutterDriver (v2.6.0) session
[AppiumDriver@018e] Checking BaseDriver versions for Appium and FlutterDriver
[AppiumDriver@018e] Appium’s BaseDriver version is 9.5.0
[AppiumDriver@018e] FlutterDriver’s BaseDriver version is 9.5.0
[FlutterDriver@8531] Creating session with W3C capabilities: {
[FlutterDriver@8531] “alwaysMatch”: {
[FlutterDriver@8531] “platformName”: “ANDROID”,
[FlutterDriver@8531] “appium:autoGrantPermissions”: true,
[FlutterDriver@8531] “appium:autoDismissAlerts”: true,
[FlutterDriver@8531] “appium:appPackage”: “com.example.automation”,
[FlutterDriver@8531] “appium:automationName”: “Flutter”,
[FlutterDriver@8531] “appium:app”: “D:\Automation\CRM_MB\src\test\resources\app-profile.apk”,
[FlutterDriver@8531] “appium:platformVersion”: “14.0”,
[FlutterDriver@8531] “appium:noReset”: false,
[FlutterDriver@8531] “appium:deviceName”: “R9ZR908HTNR”,
[FlutterDriver@8531] “appium:autoAcceptAlerts”: true,
[FlutterDriver@8531] “appium:fullReset”: true,
[FlutterDriver@8531] “appium:appActivity”: “com.example.automation.MainActivity”
[FlutterDriver@8531] },
[FlutterDriver@8531] “firstMatch”: [
[FlutterDriver@8531] {}
[FlutterDriver@8531] ]
[FlutterDriver@8531] }
[FlutterDriver@8531] The following provided capabilities were not recognized by this driver:
[FlutterDriver@8531] autoGrantPermissions
[FlutterDriver@8531] autoDismissAlerts
[FlutterDriver@8531] appPackage
[FlutterDriver@8531] deviceName
[FlutterDriver@8531] autoAcceptAlerts
[FlutterDriver@8531] appActivity
[FlutterDriver@8531 (3f2ff944)] Session created with session id: 3f2ff944-6715-442b-a837-0bc20df55ab0
[FlutterDriver] Starting an Android proxy session
[AndroidUiautomator2Driver@989d] Creating session with W3C capabilities: {
[AndroidUiautomator2Driver@989d] “alwaysMatch”: {
[AndroidUiautomator2Driver@989d] “platformName”: “ANDROID”,
[AndroidUiautomator2Driver@989d] “appium:autoGrantPermissions”: true,
[AndroidUiautomator2Driver@989d] “appium:autoDismissAlerts”: true,
[AndroidUiautomator2Driver@989d] “appium:appPackage”: “com.example.automation”,
[AndroidUiautomator2Driver@989d] “appium:automationName”: “Flutter”,
[AndroidUiautomator2Driver@989d] “appium:app”: “D:\Automation\CRM_MB\src\test\resources\app-profile.apk”,
[AndroidUiautomator2Driver@989d] “appium:platformVersion”: “14.0”,
[AndroidUiautomator2Driver@989d] “appium:noReset”: false,
[AndroidUiautomator2Driver@989d] “appium:deviceName”: “R9ZR908HTNR”,
[AndroidUiautomator2Driver@989d] “appium:autoAcceptAlerts”: true,
[AndroidUiautomator2Driver@989d] “appium:fullReset”: true,
[AndroidUiautomator2Driver@989d] “appium:appActivity”: “com.example.automation.MainActivity”
[AndroidUiautomator2Driver@989d] },
[AndroidUiautomator2Driver@989d] “firstMatch”: [
[AndroidUiautomator2Driver@989d] {}
[AndroidUiautomator2Driver@989d] ]
[AndroidUiautomator2Driver@989d] }
[AndroidUiautomator2Driver@989d] The following provided capabilities were not recognized by this driver:
[AndroidUiautomator2Driver@989d] autoDismissAlerts
[AndroidUiautomator2Driver@989d] autoAcceptAlerts
[AndroidUiautomator2Driver@989d (4f3f793c)] Session created with session id: 4f3f793c-e31e-41dc-8d52-ff759b5c295e
[ADB] Found 2 ‘build-tools’ folders under ‘C:\Users\Rsoft\AppData\Local\Android\Sdk’ (newest first):
[ADB] C:\Users\Rsoft\AppData\Local\Android\Sdk\build-tools\34.0.0
[ADB] C:\Users\Rsoft\AppData\Local\Android\Sdk\build-tools\30.0.3
[ADB] Using ‘adb.exe’ from ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 start-server’
[AndroidUiautomator2Driver@989d (4f3f793c)] Retrieving device list
[ADB] Trying to find connected Android devices
[ADB] Getting connected devices
[ADB] Connected devices: [{“udid”:“R9ZR908HTNR”,“state”:“device”}]
[AndroidUiautomator2Driver@989d (4f3f793c)] Looking for a device with Android ‘14.0.0’
[ADB] Setting device id to R9ZR908HTNR
[ADB] Getting device platform version
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell getprop ro.build.version.release’
[ADB] Current device property ‘ro.build.version.release’: 14
[AndroidUiautomator2Driver@989d (4f3f793c)] Using device: R9ZR908HTNR
[ADB] Using ‘adb.exe’ from ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 start-server’
[ADB] Setting device id to R9ZR908HTNR
[BaseDriver] Using local app ‘D:\Automation\CRM_MB\src\test\resources\app-profile.apk’
[AndroidUiautomator2Driver@989d (4f3f793c)] Checking whether app is actually present
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell getprop ro.build.version.sdk’
[ADB] Current device property ‘ro.build.version.sdk’: 34
[ADB] Getting device platform version
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell getprop ro.build.version.release’
[ADB] Current device property ‘ro.build.version.release’: 14
[ADB] Device API level: 34
[AndroidUiautomator2Driver@989d (4f3f793c)] Relaxing hidden api policy
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell ‘settings put global hidden_api_policy_pre_p_apps 1;settings put global hidden_api_policy_p_apps 1;settings put global hidden_api_policy 1’’
[AndroidUiautomator2Driver@989d (4f3f793c)] Pushing settings apk to the device…
[ADB] Getting package info for ‘io.appium.settings’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell dumpsys package io.appium.settings’
[ADB] The installed ‘io.appium.settings’ package is older than ‘C:\Users\Rsoft.appium\node_modules\appium-flutter-driver\node_modules\appium-uiautomator2-driver\node_modules\io.appium.settings\apks\settings_apk-debug.apk’ (72 < 79 or ‘5.7.2’ < ‘5.7.9’)’
[ADB] Executing upgrade of ‘C:\Users\Rsoft.appium\node_modules\appium-flutter-driver\node_modules\appium-uiautomator2-driver\node_modules\io.appium.settings\apks\settings_apk-debug.apk’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR help’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR features’
[ADB] The application at ‘C:\Users\Rsoft.appium\node_modules\appium-flutter-driver\node_modules\appium-uiautomator2-driver\node_modules\io.appium.settings\apks\settings_apk-debug.apk’ will not be cached, because the device under test has confirmed the support of streamed installs
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR install -r -g C:\Users\Rsoft.appium\node_modules\appium-flutter-driver\node_modules\appium-uiautomator2-driver\node_modules\io.appium.settings\apks\settings_apk-debug.apk’
[ADB] Cannot install/upgrade ‘io.appium.settings’ because of 'Error executing adbExec. Original error: ‘Command ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR install -r -g C:\Users\Rsoft\.appium\node_modules\appium-flutter-driver\node_modules\appium-uiautomator2-driver\node_modules\io.appium.settings\apks\settings_apk-debug.apk’ exited with code 1’; Command output: adb: failed to install C:\Users\Rsoft.appium\node_modules\appium-flutter-driver\node_modules\appium-uiautomator2-driver\node_modules\io.appium.settings\apks\settings_apk-debug.apk: Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE: Existing package io.appium.settings signatures do not match newer version; ignoring!]
[ADB] ‘. Trying full reinstall
[ADB] Uninstalling io.appium.settings
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell am force-stop io.appium.settings’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR uninstall io.appium.settings’
[HTTP] → GET /session/71c03e3f-caf7-4fa8-9956-fc8cffc9d6a0/timeouts
[HTTP] {}
[AppiumDriver@018e] Encountered internal error running command: NoSuchDriverError: A session is either terminated or not started
[AppiumDriver@018e] at asyncHandler (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules@appium\base-driver\lib\protocol\protocol.js:315:15)
[AppiumDriver@018e] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules@appium\base-driver\lib\protocol\protocol.js:518:15
[AppiumDriver@018e] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[AppiumDriver@018e] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\route.js:144:13)
[AppiumDriver@018e] at Route.dispatch (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\route.js:114:3)
[AppiumDriver@018e] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[AppiumDriver@018e] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:284:15
[AppiumDriver@018e] at param (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:365:14)
[AppiumDriver@018e] at param (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:376:14)
[AppiumDriver@018e] at Function.process_params (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:421:3)
[AppiumDriver@018e] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[AppiumDriver@018e] at logger (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\morgan\index.js:144:5)
[AppiumDriver@018e] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[AppiumDriver@018e] at trim_prefix (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[AppiumDriver@018e] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[AppiumDriver@018e] at Function.process_params (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[AppiumDriver@018e] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[AppiumDriver@018e] at jsonParser (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\body-parser\lib\types\json.js:113:7)
[AppiumDriver@018e] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[AppiumDriver@018e] at trim_prefix (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[AppiumDriver@018e] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[AppiumDriver@018e] at Function.process_params (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[AppiumDriver@018e] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[AppiumDriver@018e] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:91:12)
[AppiumDriver@018e] at trim_prefix (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[AppiumDriver@018e] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[AppiumDriver@018e] at Function.process_params (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[AppiumDriver@018e] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[AppiumDriver@018e] at methodOverride (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\method-override\index.js:65:14)
[AppiumDriver@018e] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[AppiumDriver@018e] at trim_prefix (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[AppiumDriver@018e] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[AppiumDriver@018e] at Function.process_params (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[AppiumDriver@018e] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[AppiumDriver@018e] at urlencodedParser (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\body-parser\lib\types\urlencoded.js:91:7)
[AppiumDriver@018e] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[AppiumDriver@018e] at trim_prefix (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[AppiumDriver@018e] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[AppiumDriver@018e] at Function.process_params (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[AppiumDriver@018e] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[AppiumDriver@018e] at defaultToJSONContentType (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules@appium\base-driver\lib\express\middleware.js:58:3)
[AppiumDriver@018e] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[AppiumDriver@018e] at trim_prefix (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[AppiumDriver@018e] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[AppiumDriver@018e] at Function.process_params (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[AppiumDriver@018e] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[AppiumDriver@018e] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules@appium\base-driver\lib\express\middleware.js:50:5
[AppiumDriver@018e] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[AppiumDriver@018e] at trim_prefix (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[AppiumDriver@018e] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[AppiumDriver@018e] at Function.process_params (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[AppiumDriver@018e] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[HTTP] ← GET /session/71c03e3f-caf7-4fa8-9956-fc8cffc9d6a0/timeouts 404 53 ms - 7421
[HTTP]
[ADB] ‘adb uninstall io.appium.settings’ command output: Success
[ADB] io.appium.settings was successfully uninstalled
[ADB] The application at ‘C:\Users\Rsoft.appium\node_modules\appium-flutter-driver\node_modules\appium-uiautomator2-driver\node_modules\io.appium.settings\apks\settings_apk-debug.apk’ will not be cached, because the device under test has confirmed the support of streamed installs
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR install -g C:\Users\Rsoft.appium\node_modules\appium-flutter-driver\node_modules\appium-uiautomator2-driver\node_modules\io.appium.settings\apks\settings_apk-debug.apk’
[ADB] The installation of ‘settings_apk-debug.apk’ took 1884ms
[ADB] Install command stdout: Performing Streamed Install
[ADB] Success
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell dumpsys activity services io.appium.settings’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell cmd notification allow_listener io.appium.settings/.NLService’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell appops set io.appium.settings PROJECT_MEDIA allow’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell dumpsys activity services io.appium.settings’
[SettingsApp] Starting Appium Settings app
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell am start -n io.appium.settings/.Settings -a android.intent.action.MAIN -c android.intent.category.LAUNCHER’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell dumpsys activity services io.appium.settings’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell dumpsys activity services io.appium.settings’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell dumpsys activity services io.appium.settings’
[Logcat] Starting logs capture with command: C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR logcat -v threadtime
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell appops set io.appium.settings android:mock_location allow’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell “[ -e ‘/data/local/tmp/mock_apps.json’ ] && echo PASS”’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell cat /data/local/tmp/mock_apps.json’
[AndroidUiautomator2Driver@989d (4f3f793c)] Forwarding UiAutomator2 Server port 6790 to local port 8202
[ADB] Forwarding system: 8202 to device: 6790
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR forward tcp:8202 tcp:6790’
[ADB] Getting package info for ‘io.appium.uiautomator2.server’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell dumpsys package io.appium.uiautomator2.server’
[ADB] Getting install status for io.appium.uiautomator2.server.test
[ADB] Checking app cert for D:\Automation\CRM_MB\src\test\resources\app-profile.apk
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell cmd package list packages’
[ADB] ‘io.appium.uiautomator2.server.test’ is installed
[ADB] Using ‘apksigner.jar’ from ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\build-tools\34.0.0\lib\apksigner.jar’
[ADB] Starting apksigner: ‘C:\Program Files\Java\jdk-17\bin\java.exe’ -Xmx1024M -Xss1m -jar C:\Users\Rsoft\AppData\Local\Android\Sdk\build-tools\34.0.0\lib\apksigner.jar verify --print-certs D:\Automation\CRM_MB\src\test\resources\app-profile.apk
[ADB] The installed ‘io.appium.uiautomator2.server’ package is older than ‘C:\Users\Rsoft.appium\node_modules\appium-flutter-driver\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-v7.0.5.apk’ (155 < 167 or ‘6.0.3’ < ‘7.0.5’)’
[AndroidUiautomator2Driver@989d (4f3f793c)] Server packages status: [{“installState”:“olderVersionInstalled”,“appPath”:“C:\Users\Rsoft\.appium\node_modules\appium-flutter-driver\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-v7.0.5.apk”,“appId”:“io.appium.uiautomator2.server”},{“installState”:“sameVersionInstalled”,“appPath”:“C:\Users\Rsoft\.appium\node_modules\appium-flutter-driver\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-debug-androidTest.apk”,“appId”:“io.appium.uiautomator2.server.test”}]
[AndroidUiautomator2Driver@989d (4f3f793c)] Server packages are going to be (re)installed
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR version’
[ADB] The application at ‘C:\Users\Rsoft.appium\node_modules\appium-flutter-driver\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-v7.0.5.apk’ will not be cached, because the device under test has confirmed the support of streamed installs
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR install -r --no-incremental C:\Users\Rsoft.appium\node_modules\appium-flutter-driver\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-v7.0.5.apk’
[ADB] The application at ‘C:\Users\Rsoft.appium\node_modules\appium-flutter-driver\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-debug-androidTest.apk’ will not be cached, because the device under test has confirmed the support of streamed installs
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR install -r --no-incremental C:\Users\Rsoft.appium\node_modules\appium-flutter-driver\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-debug-androidTest.apk’
[ADB] apksigner stdout: Signer #1 certificate DN: C=US, O=Android, CN=Android Debug
[ADB] Signer #1 certificate SHA-256 digest: e8673f7ad23225f0d052679fb7909528e307fc49e1b70ff481f7084aca0ac8fa
[ADB] Signer #1 certificate SHA-1 digest: 7bc0e400cc708083d52e831e23cb4dfa053a2f16
[ADB] Signer #1 certificate MD5 digest: 6e15642cd99ab929e1ee449c155be3f3
[ADB]
[ADB] ‘D:\Automation\CRM_MB\src\test\resources\app-profile.apk’ is signed with a non-default certificate
[ADB] Uninstalling com.example.automation
[ADB] Getting install status for com.example.automation
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell cmd package list packages’
[ADB] ‘com.example.automation’ is not installed
[ADB] com.example.automation was not uninstalled, because it was not present on the device
[ADB] Getting install status for com.example.automation
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell cmd package list packages’
[ADB] ‘com.example.automation’ is not installed
[AndroidUiautomator2Driver@989d (4f3f793c)] Running full reset on ‘com.example.automation’ (reinstall)
[ADB] The application at ‘D:\Automation\CRM_MB\src\test\resources\app-profile.apk’ will not be cached, because the device under test has confirmed the support of streamed installs
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR install -r -g D:\Automation\CRM_MB\src\test\resources\app-profile.apk’
[ADB] The installation of ‘appium-uiautomator2-server-debug-androidTest.apk’ took 1227ms
[ADB] Install command stdout: Performing Streamed Install
[ADB] Success
[ADB] The installation of ‘appium-uiautomator2-server-v7.0.5.apk’ took 5447ms
[ADB] Install command stdout: Performing Streamed Install
[ADB] Success
[AndroidUiautomator2Driver@989d (4f3f793c)] Waiting up to 30000ms for services to be available
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell pm list instrumentation’
[AndroidUiautomator2Driver@989d (4f3f793c)] Instrumentation target ‘io.appium.uiautomator2.server.test/androidx.test.runner.AndroidJUnitRunner’ is available
[ADB] Adding packages [“io.appium.settings”,“io.appium.uiautomator2.server”,“io.appium.uiautomator2.server.test”] to Doze whitelist
[ADB] Got the following command chunks to execute: [[“dumpsys”,“deviceidle”,“whitelist”,“+io.appium.settings”,“;”,“dumpsys”,“deviceidle”,“whitelist”,“+io.appium.uiautomator2.server”,“;”,“dumpsys”,“deviceidle”,“whitelist”,“+io.appium.uiautomator2.server.test”,“;”]]
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell dumpsys deviceidle whitelist +io.appium.settings ; dumpsys deviceidle whitelist +io.appium.uiautomator2.server ; dumpsys deviceidle whitelist +io.appium.uiautomator2.server.test ;’
[ADB] The installation of ‘app-profile.apk’ took 5256ms
[ADB] Install command stdout: Performing Streamed Install
[ADB] Success
[AndroidUiautomator2Driver@989d (4f3f793c)] Performing shallow cleanup of automation leftovers
[AndroidUiautomator2Driver@989d (4f3f793c)] No obsolete sessions have been detected (socket hang up)
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell am force-stop io.appium.uiautomator2.server.test’
[AndroidUiautomator2Driver@989d (4f3f793c)] Starting UIAutomator2 server 7.0.5
[AndroidUiautomator2Driver@989d (4f3f793c)] Using UIAutomator2 server from ‘C:\Users\Rsoft.appium\node_modules\appium-flutter-driver\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-v7.0.5.apk’ and test from ‘C:\Users\Rsoft.appium\node_modules\appium-flutter-driver\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-debug-androidTest.apk’
[AndroidUiautomator2Driver@989d (4f3f793c)] Waiting up to 30000ms for UiAutomator2 to be online…
[ADB] Creating ADB subprocess with args: [“-P”,“5037”,“-s”,“R9ZR908HTNR”,“shell”,“am”,“instrument”,“-w”,“-e”,“disableAnalytics”,“true”,“io.appium.uiautomator2.server.test/androidx.test.runner.AndroidJUnitRunner”]
[AndroidUiautomator2Driver@989d (4f3f793c)] Matched ‘/status’ to command name ‘getStatus’
[AndroidUiautomator2Driver@989d (4f3f793c)] Proxying [GET /status] to [GET http://127.0.0.1:8202/status] with no body
[AndroidUiautomator2Driver@989d (4f3f793c)] socket hang up
[AndroidUiautomator2Driver@989d (4f3f793c)] Matched ‘/status’ to command name ‘getStatus’
[AndroidUiautomator2Driver@989d (4f3f793c)] Proxying [GET /status] to [GET http://127.0.0.1:8202/status] with no body
[AndroidUiautomator2Driver@989d (4f3f793c)] socket hang up
[AndroidUiautomator2Driver@989d (4f3f793c)] Matched ‘/status’ to command name ‘getStatus’
[AndroidUiautomator2Driver@989d (4f3f793c)] Proxying [GET /status] to [GET http://127.0.0.1:8202/status] with no body
[AndroidUiautomator2Driver@989d (4f3f793c)] socket hang up
[AndroidUiautomator2Driver@989d (4f3f793c)] Matched ‘/status’ to command name ‘getStatus’
[AndroidUiautomator2Driver@989d (4f3f793c)] Proxying [GET /status] to [GET http://127.0.0.1:8202/status] with no body
[AndroidUiautomator2Driver@989d (4f3f793c)] socket hang up
[Instrumentation] io.appium.uiautomator2.server.test.AppiumUiAutomator2Server:
[AndroidUiautomator2Driver@989d (4f3f793c)] Matched ‘/status’ to command name ‘getStatus’
[AndroidUiautomator2Driver@989d (4f3f793c)] Proxying [GET /status] to [GET http://127.0.0.1:8202/status] with no body
[AndroidUiautomator2Driver@989d (4f3f793c)] socket hang up
[AndroidUiautomator2Driver@989d (4f3f793c)] Matched ‘/status’ to command name ‘getStatus’
[AndroidUiautomator2Driver@989d (4f3f793c)] Proxying [GET /status] to [GET http://127.0.0.1:8202/status] with no body
[AndroidUiautomator2Driver@989d (4f3f793c)] socket hang up
[AndroidUiautomator2Driver@989d (4f3f793c)] Matched ‘/status’ to command name ‘getStatus’
[AndroidUiautomator2Driver@989d (4f3f793c)] Proxying [GET /status] to [GET http://127.0.0.1:8202/status] with no body
[AndroidUiautomator2Driver@989d (4f3f793c)] Got response with status 200: {“sessionId”:“None”,“value”:{“message”:“UiAutomator2 Server is ready to accept commands”,“ready”:true}}
[AndroidUiautomator2Driver@989d (4f3f793c)] The initialization of the instrumentation process took 6273ms
[AndroidUiautomator2Driver@989d (4f3f793c)] Matched ‘/session’ to command name ‘createSession’
[AndroidUiautomator2Driver@989d (4f3f793c)] Proxying [POST /session] to [POST http://127.0.0.1:8202/session] with body: {“capabilities”:{“firstMatch”:[{“platformName”:“ANDROID”,“autoGrantPermissions”:true,“autoDismissAlerts”:true,“appPackage”:“com.example.automation”,“automationName”:“Flutter”,“app”:“D:\Automation\CRM_MB\src\test\resources\app-profile.apk”,“platformVersion”:“14.0”,“noReset”:false,“deviceName”:“R9ZR908HTNR”,“autoAcceptAlerts”:true,“fullReset”:true,“appActivity”:“com.example.automation.MainActivity”,“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“platformName”:“ANDROID”,“autoGrantPermissions”:true,“autoDismissAlerts”:true,“appPackage”:“com.example.automation”,“automationName”:“Flutter”,“app”:“D:\Automation\CRM_MB\src\test\resources\app-profile.apk”,“platformVersion”:“14.0”,“noReset”:false,“deviceName”:“R9ZR908HTNR”,“autoAcceptAlerts”:true,“fullReset”:true,“appActivity”:“com.example.automation.MainActivity”},“deviceUDID”:“R9ZR908HTNR”}],“alway…
[AndroidUiautomator2Driver@989d (4f3f793c)] Got response with status 200: {“sessionId”:“2fb83852-a9e7-4fd8-ac1d-79aecd0d82d1”,“value”:{“capabilities”:{“firstMatch”:[{“platformName”:“ANDROID”,“autoGrantPermissions”:true,“autoDismissAlerts”:true,“appPackage”:“com.example.automation”,“automationName”:“Flutter”,“app”:“D:\Automation\CRM_MB\src\test\resources\app-profile.apk”,“platformVersion”:“14.0”,“noReset”:false,“deviceName”:“R9ZR908HTNR”,“autoAcceptAlerts”:true,“fullReset”:true,“appActivity”:“com.example.automation.MainActivity”,“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“platformName”:“ANDROID”,“autoGrantPermissions”:true,“autoDismissAlerts”:true,“appPackage”:“com.example.automation”,“automationName”:“Flutter”,“app”:“D:\Automation\CRM_MB\src\test\resources\app-profile.apk”,“platformVersion”:“14.0”,“noReset”:false,“deviceName”:“R9ZR908HTNR”,“autoAcceptAlerts”:true,“fullReset”:true,“appActivity”:“com.example.a…
[AndroidUiautomator2Driver@989d (4f3f793c)] Determined the downstream protocol as ‘W3C’
[AndroidUiautomator2Driver@989d (4f3f793c)] Proxying [GET /appium/device/pixel_ratio] to [GET http://127.0.0.1:8202/session/2fb83852-a9e7-4fd8-ac1d-79aecd0d82d1/appium/device/pixel_ratio] with no body
[AndroidUiautomator2Driver@989d (4f3f793c)] Matched ‘/appium/device/system_bars’ to command name ‘getSystemBars’
[AndroidUiautomator2Driver@989d (4f3f793c)] Proxying [GET /appium/device/system_bars] to [GET http://127.0.0.1:8202/session/2fb83852-a9e7-4fd8-ac1d-79aecd0d82d1/appium/device/system_bars] with no body
[AndroidUiautomator2Driver@989d (4f3f793c)] Matched ‘/window/current/size’ to command name ‘getWindowSize’
[AndroidUiautomator2Driver@989d (4f3f793c)] Proxying [GET /window/current/size] to [GET http://127.0.0.1:8202/session/2fb83852-a9e7-4fd8-ac1d-79aecd0d82d1/window/current/size] with no body
[AndroidUiautomator2Driver@989d (4f3f793c)] Proxying [GET /appium/device/info] to [GET http://127.0.0.1:8202/session/2fb83852-a9e7-4fd8-ac1d-79aecd0d82d1/appium/device/info] with no body
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell dumpsys window’
[AndroidUiautomator2Driver@989d (4f3f793c)] Got response with status 200: {“sessionId”:“2fb83852-a9e7-4fd8-ac1d-79aecd0d82d1”,“value”:1.3312501}
[AndroidUiautomator2Driver@989d (4f3f793c)] Got response with status 200: {“sessionId”:“2fb83852-a9e7-4fd8-ac1d-79aecd0d82d1”,“value”:{“statusBar”:32}}
[AndroidUiautomator2Driver@989d (4f3f793c)] Got response with status 200: {“sessionId”:“2fb83852-a9e7-4fd8-ac1d-79aecd0d82d1”,“value”:{“height”:1340,“width”:800}}
[AndroidUiautomator2Driver@989d (4f3f793c)] Got response with status 200: {“sessionId”:“2fb83852-a9e7-4fd8-ac1d-79aecd0d82d1”,“value”:{“androidId”:“c16c00e2b60ac933”,“apiVersion”:“34”,“bluetooth”:{“state”:“ON”},“brand”:“samsung”,“carrierName”:””,“displayDensity”:213,“locale”:“en_IN”,“manufacturer”:“samsung”,“model”:“SM-T220”,“networks”:[{“capabilities”:{“SSID”:null,“linkDownBandwidthKbps”:60000,“linkUpstreamBandwidthKbps”:12000,“networkCapabilities”:“NET_CAPABILITY_NOT_METERED,NET_CAPABILITY_INTERNET,NET_CAPABILITY_NOT_RESTRICTED,NET_CAPABILITY_TRUSTED,NET_CAPABILITY_NOT_VPN,NET_CAPABILITY_VALIDATED,NET_CAPABILITY_NOT_ROAMING,NET_CAPABILITY_FOREGROUND,NET_CAPABILITY_NOT_CONGESTED,NET_CAPABILITY_NOT_SUSPENDED”,“signalStrength”:-62,“transportTypes”:“TRANSPORT_WIFI”},“detailedState”:“CONNECTED”,“extraInfo”:“”,“isAvailable”:true,“isConnected”:true,“isFailover”:false,“isRoaming”:false,“state”:“CONNECTED”,“subtype”:-1,“subtypeName”:“”,“type”:1,“typeName”:“WIFI”}],“platformVersion”:“14”,“realDisplaySize”:“800x1340”,“timeZone”:“Asia/Calcutta”}}
[AndroidUiautomator2Driver@989d (4f3f793c)] Screen is locked, trying to unlock
[AndroidUiautomator2Driver@989d (4f3f793c)] Neither ‘unlockType’ nor ‘unlockKey’ capability is provided. Assuming the device is locked with a simple lock screen.
[ADB] Waking up the device to dismiss the keyguard
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell input keyevent 26’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell input keyevent 224’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell wm dismiss-keyguard’
[AndroidUiautomator2Driver@989d (4f3f793c)] Starting 'com.example.automation/com.example.automation.MainActivity and waiting for ‘com.example.automation/com.example.automation.MainActivity’
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR shell am start -W -n com.example.automation/com.example.automation.MainActivity -S -a android.intent.action.MAIN -c android.intent.category.LAUNCHER -f 0x10200000’
[FlutterDriver] Establishing a connection to the Dart Observatory. Will retry 10 times with 3000ms delay between retries. These values could be customized by changing ‘maxRetryCount’ and ‘retryBackoffTime’ capabilities.
[FlutterDriver] Attempt #1 of 10
[ADB] Forwarding system: 38945 to device: 38945
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR forward tcp:38945 tcp:38945’
[FlutterDriver] Connecting to Dart Observatory: ws://127.0.0.1:38945/t68qjBRnn5s=/ws
[FlutterDriver] Listing all isolates: [{“type”:“@Isolate”,“id”:“isolates/7430556232265575”,“name”:“main”,“number”:“7430556232265575”,“isSystemIsolate”:false,“isolateGroupId”:“isolateGroups/1737539488735018”}]
[FlutterDriver] “ext.flutter.driver” is not found in “extensionRPCs” [“ext.ui.window.impellerEnabled”,“ext.dart.io.httpEnableTimelineLogging”,“ext.dart.io.getSocketProfile”,“ext.dart.io.socketProfilingEnabled”,“ext.dart.io.clearSocketProfile”,“ext.dart.io.getVersion”,“ext.dart.io.getHttpProfile”,“ext.dart.io.getHttpProfileRequest”,“ext.dart.io.clearHttpProfile”,“ext.flutter.exit”,“ext.flutter.connectedVmServiceUri”,“ext.flutter.activeDevToolsServerAddress”,“ext.flutter.timeDilation”,“ext.flutter.profilePlatformChannels”,“ext.flutter.debugDumpRenderTree”,“ext.flutter.debugDumpSemanticsTreeInTraversalOrder”,“ext.flutter.debugDumpSemanticsTreeInInverseHitTestOrder”,“ext.flutter.profileRenderObjectPaints”,“ext.flutter.profileRenderObjectLayouts”,“ext.flutter.debugDumpApp”,“ext.flutter.debugDumpFocusTree”,“ext.flutter.showPerformanceOverlay”,“ext.flutter.didSendFirstFrameEvent”,“ext.flutter.didSendFirstFrameRasterizedEvent”,“ext.flutter.profileWidgetBuilds”,“ext.flutter.profileUserWidgetBuilds”]
[ADB] Removing forwarded port socket connection: 38945
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR forward --remove tcp:38945’
[FlutterDriver] Waiting 3000ms before retrying
[FlutterDriver] Attempt #2 of 10
[ADB] Forwarding system: 38945 to device: 38945
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR forward tcp:38945 tcp:38945’
[FlutterDriver] Connecting to Dart Observatory: ws://127.0.0.1:38945/t68qjBRnn5s=/ws
[FlutterDriver] Listing all isolates: [{“type”:“@Isolate”,“id”:“isolates/7430556232265575”,“name”:“main”,“number”:“7430556232265575”,“isSystemIsolate”:false,“isolateGroupId”:“isolateGroups/1737539488735018”}]
[FlutterDriver] “ext.flutter.driver” is not found in “extensionRPCs” [“ext.ui.window.impellerEnabled”,“ext.dart.io.httpEnableTimelineLogging”,“ext.dart.io.getSocketProfile”,“ext.dart.io.socketProfilingEnabled”,“ext.dart.io.clearSocketProfile”,“ext.dart.io.getVersion”,“ext.dart.io.getHttpProfile”,“ext.dart.io.getHttpProfileRequest”,“ext.dart.io.clearHttpProfile”,“ext.flutter.exit”,“ext.flutter.connectedVmServiceUri”,“ext.flutter.activeDevToolsServerAddress”,“ext.flutter.timeDilation”,“ext.flutter.profilePlatformChannels”,“ext.flutter.debugDumpRenderTree”,“ext.flutter.debugDumpSemanticsTreeInTraversalOrder”,“ext.flutter.debugDumpSemanticsTreeInInverseHitTestOrder”,“ext.flutter.profileRenderObjectPaints”,“ext.flutter.profileRenderObjectLayouts”,“ext.flutter.debugDumpApp”,“ext.flutter.debugDumpFocusTree”,“ext.flutter.showPerformanceOverlay”,“ext.flutter.didSendFirstFrameEvent”,“ext.flutter.didSendFirstFrameRasterizedEvent”,“ext.flutter.profileWidgetBuilds”,“ext.flutter.profileUserWidgetBuilds”]
[ADB] Removing forwarded port socket connection: 38945
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR forward --remove tcp:38945’
[FlutterDriver] Waiting 3000ms before retrying
[FlutterDriver] Attempt #3 of 10
[ADB] Forwarding system: 38945 to device: 38945
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR forward tcp:38945 tcp:38945’
[FlutterDriver] Connecting to Dart Observatory: ws://127.0.0.1:38945/t68qjBRnn5s=/ws
[FlutterDriver] Listing all isolates: [{“type”:“@Isolate”,“id”:“isolates/7430556232265575”,“name”:“main”,“number”:“7430556232265575”,“isSystemIsolate”:false,“isolateGroupId”:“isolateGroups/1737539488735018”}]
[FlutterDriver] “ext.flutter.driver” is not found in “extensionRPCs” [“ext.ui.window.impellerEnabled”,“ext.dart.io.httpEnableTimelineLogging”,“ext.dart.io.getSocketProfile”,“ext.dart.io.socketProfilingEnabled”,“ext.dart.io.clearSocketProfile”,“ext.dart.io.getVersion”,“ext.dart.io.getHttpProfile”,“ext.dart.io.getHttpProfileRequest”,“ext.dart.io.clearHttpProfile”,“ext.flutter.exit”,“ext.flutter.connectedVmServiceUri”,“ext.flutter.activeDevToolsServerAddress”,“ext.flutter.timeDilation”,“ext.flutter.profilePlatformChannels”,“ext.flutter.debugDumpRenderTree”,“ext.flutter.debugDumpSemanticsTreeInTraversalOrder”,“ext.flutter.debugDumpSemanticsTreeInInverseHitTestOrder”,“ext.flutter.profileRenderObjectPaints”,“ext.flutter.profileRenderObjectLayouts”,“ext.flutter.debugDumpApp”,“ext.flutter.debugDumpFocusTree”,“ext.flutter.showPerformanceOverlay”,“ext.flutter.didSendFirstFrameEvent”,“ext.flutter.didSendFirstFrameRasterizedEvent”,“ext.flutter.profileWidgetBuilds”,“ext.flutter.profileUserWidgetBuilds”]
[ADB] Removing forwarded port socket connection: 38945
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR forward --remove tcp:38945’
[FlutterDriver] Waiting 3000ms before retrying
[FlutterDriver] Attempt #4 of 10
[ADB] Forwarding system: 38945 to device: 38945
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR forward tcp:38945 tcp:38945’
[FlutterDriver] Connecting to Dart Observatory: ws://127.0.0.1:38945/t68qjBRnn5s=/ws
[FlutterDriver] Listing all isolates: [{“type”:“@Isolate”,“id”:“isolates/7430556232265575”,“name”:“main”,“number”:“7430556232265575”,“isSystemIsolate”:false,“isolateGroupId”:“isolateGroups/1737539488735018”}]
[FlutterDriver] “ext.flutter.driver” is not found in “extensionRPCs” [“ext.ui.window.impellerEnabled”,“ext.dart.io.httpEnableTimelineLogging”,“ext.dart.io.getSocketProfile”,“ext.dart.io.socketProfilingEnabled”,“ext.dart.io.clearSocketProfile”,“ext.dart.io.getVersion”,“ext.dart.io.getHttpProfile”,“ext.dart.io.getHttpProfileRequest”,“ext.dart.io.clearHttpProfile”,“ext.flutter.exit”,“ext.flutter.connectedVmServiceUri”,“ext.flutter.activeDevToolsServerAddress”,“ext.flutter.timeDilation”,“ext.flutter.profilePlatformChannels”,“ext.flutter.debugDumpRenderTree”,“ext.flutter.debugDumpSemanticsTreeInTraversalOrder”,“ext.flutter.debugDumpSemanticsTreeInInverseHitTestOrder”,“ext.flutter.profileRenderObjectPaints”,“ext.flutter.profileRenderObjectLayouts”,“ext.flutter.debugDumpApp”,“ext.flutter.debugDumpFocusTree”,“ext.flutter.showPerformanceOverlay”,“ext.flutter.didSendFirstFrameEvent”,“ext.flutter.didSendFirstFrameRasterizedEvent”,“ext.flutter.profileWidgetBuilds”,“ext.flutter.profileUserWidgetBuilds”]
[ADB] Removing forwarded port socket connection: 38945
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR forward --remove tcp:38945’
[FlutterDriver] Waiting 3000ms before retrying
[FlutterDriver] Attempt #5 of 10
[ADB] Forwarding system: 38945 to device: 38945
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR forward tcp:38945 tcp:38945’
[FlutterDriver] Connecting to Dart Observatory: ws://127.0.0.1:38945/t68qjBRnn5s=/ws
[FlutterDriver] Listing all isolates: [{“type”:“@Isolate”,“id”:“isolates/7430556232265575”,“name”:“main”,“number”:“7430556232265575”,“isSystemIsolate”:false,“isolateGroupId”:“isolateGroups/1737539488735018”}]
[FlutterDriver] “ext.flutter.driver” is not found in “extensionRPCs” [“ext.ui.window.impellerEnabled”,“ext.dart.io.httpEnableTimelineLogging”,“ext.dart.io.getSocketProfile”,“ext.dart.io.socketProfilingEnabled”,“ext.dart.io.clearSocketProfile”,“ext.dart.io.getVersion”,“ext.dart.io.getHttpProfile”,“ext.dart.io.getHttpProfileRequest”,“ext.dart.io.clearHttpProfile”,“ext.flutter.exit”,“ext.flutter.connectedVmServiceUri”,“ext.flutter.activeDevToolsServerAddress”,“ext.flutter.timeDilation”,“ext.flutter.profilePlatformChannels”,“ext.flutter.debugDumpRenderTree”,“ext.flutter.debugDumpSemanticsTreeInTraversalOrder”,“ext.flutter.debugDumpSemanticsTreeInInverseHitTestOrder”,“ext.flutter.profileRenderObjectPaints”,“ext.flutter.profileRenderObjectLayouts”,“ext.flutter.debugDumpApp”,“ext.flutter.debugDumpFocusTree”,“ext.flutter.showPerformanceOverlay”,“ext.flutter.didSendFirstFrameEvent”,“ext.flutter.didSendFirstFrameRasterizedEvent”,“ext.flutter.profileWidgetBuilds”,“ext.flutter.profileUserWidgetBuilds”]
[ADB] Removing forwarded port socket connection: 38945
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR forward --remove tcp:38945’
[FlutterDriver] Waiting 3000ms before retrying
[FlutterDriver] Attempt #6 of 10
[ADB] Forwarding system: 38945 to device: 38945
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR forward tcp:38945 tcp:38945’
[FlutterDriver] Connecting to Dart Observatory: ws://127.0.0.1:38945/t68qjBRnn5s=/ws
[FlutterDriver] Listing all isolates: [{“type”:“@Isolate”,“id”:“isolates/7430556232265575”,“name”:“main”,“number”:“7430556232265575”,“isSystemIsolate”:false,“isolateGroupId”:“isolateGroups/1737539488735018”}]
[FlutterDriver] “ext.flutter.driver” is not found in “extensionRPCs” [“ext.ui.window.impellerEnabled”,“ext.dart.io.httpEnableTimelineLogging”,“ext.dart.io.getSocketProfile”,“ext.dart.io.socketProfilingEnabled”,“ext.dart.io.clearSocketProfile”,“ext.dart.io.getVersion”,“ext.dart.io.getHttpProfile”,“ext.dart.io.getHttpProfileRequest”,“ext.dart.io.clearHttpProfile”,“ext.flutter.exit”,“ext.flutter.connectedVmServiceUri”,“ext.flutter.activeDevToolsServerAddress”,“ext.flutter.timeDilation”,“ext.flutter.profilePlatformChannels”,“ext.flutter.debugDumpRenderTree”,“ext.flutter.debugDumpSemanticsTreeInTraversalOrder”,“ext.flutter.debugDumpSemanticsTreeInInverseHitTestOrder”,“ext.flutter.profileRenderObjectPaints”,“ext.flutter.profileRenderObjectLayouts”,“ext.flutter.debugDumpApp”,“ext.flutter.debugDumpFocusTree”,“ext.flutter.showPerformanceOverlay”,“ext.flutter.didSendFirstFrameEvent”,“ext.flutter.didSendFirstFrameRasterizedEvent”,“ext.flutter.profileWidgetBuilds”,“ext.flutter.profileUserWidgetBuilds”]
[ADB] Removing forwarded port socket connection: 38945
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR forward --remove tcp:38945’
[FlutterDriver] Waiting 3000ms before retrying
[FlutterDriver] Attempt #7 of 10
[ADB] Forwarding system: 38945 to device: 38945
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR forward tcp:38945 tcp:38945’
[FlutterDriver] Connecting to Dart Observatory: ws://127.0.0.1:38945/t68qjBRnn5s=/ws
[FlutterDriver] Listing all isolates: [{“type”:“@Isolate”,“id”:“isolates/7430556232265575”,“name”:“main”,“number”:“7430556232265575”,“isSystemIsolate”:false,“isolateGroupId”:“isolateGroups/1737539488735018”}]
[FlutterDriver] “ext.flutter.driver” is not found in “extensionRPCs” [“ext.ui.window.impellerEnabled”,“ext.dart.io.httpEnableTimelineLogging”,“ext.dart.io.getSocketProfile”,“ext.dart.io.socketProfilingEnabled”,“ext.dart.io.clearSocketProfile”,“ext.dart.io.getVersion”,“ext.dart.io.getHttpProfile”,“ext.dart.io.getHttpProfileRequest”,“ext.dart.io.clearHttpProfile”,“ext.flutter.exit”,“ext.flutter.connectedVmServiceUri”,“ext.flutter.activeDevToolsServerAddress”,“ext.flutter.timeDilation”,“ext.flutter.profilePlatformChannels”,“ext.flutter.debugDumpRenderTree”,“ext.flutter.debugDumpSemanticsTreeInTraversalOrder”,“ext.flutter.debugDumpSemanticsTreeInInverseHitTestOrder”,“ext.flutter.profileRenderObjectPaints”,“ext.flutter.profileRenderObjectLayouts”,“ext.flutter.debugDumpApp”,“ext.flutter.debugDumpFocusTree”,“ext.flutter.showPerformanceOverlay”,“ext.flutter.didSendFirstFrameEvent”,“ext.flutter.didSendFirstFrameRasterizedEvent”,“ext.flutter.profileWidgetBuilds”,“ext.flutter.profileUserWidgetBuilds”]
[ADB] Removing forwarded port socket connection: 38945
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR forward --remove tcp:38945’
[FlutterDriver] Waiting 3000ms before retrying
[FlutterDriver] Attempt #8 of 10
[ADB] Forwarding system: 38945 to device: 38945
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR forward tcp:38945 tcp:38945’
[FlutterDriver] Connecting to Dart Observatory: ws://127.0.0.1:38945/t68qjBRnn5s=/ws
[FlutterDriver] Listing all isolates: [{“type”:“@Isolate”,“id”:“isolates/7430556232265575”,“name”:“main”,“number”:“7430556232265575”,“isSystemIsolate”:false,“isolateGroupId”:“isolateGroups/1737539488735018”}]
[FlutterDriver] “ext.flutter.driver” is not found in “extensionRPCs” [“ext.ui.window.impellerEnabled”,“ext.dart.io.httpEnableTimelineLogging”,“ext.dart.io.getSocketProfile”,“ext.dart.io.socketProfilingEnabled”,“ext.dart.io.clearSocketProfile”,“ext.dart.io.getVersion”,“ext.dart.io.getHttpProfile”,“ext.dart.io.getHttpProfileRequest”,“ext.dart.io.clearHttpProfile”,“ext.flutter.exit”,“ext.flutter.connectedVmServiceUri”,“ext.flutter.activeDevToolsServerAddress”,“ext.flutter.timeDilation”,“ext.flutter.profilePlatformChannels”,“ext.flutter.debugDumpRenderTree”,“ext.flutter.debugDumpSemanticsTreeInTraversalOrder”,“ext.flutter.debugDumpSemanticsTreeInInverseHitTestOrder”,“ext.flutter.profileRenderObjectPaints”,“ext.flutter.profileRenderObjectLayouts”,“ext.flutter.debugDumpApp”,“ext.flutter.debugDumpFocusTree”,“ext.flutter.showPerformanceOverlay”,“ext.flutter.didSendFirstFrameEvent”,“ext.flutter.didSendFirstFrameRasterizedEvent”,“ext.flutter.profileWidgetBuilds”,“ext.flutter.profileUserWidgetBuilds”]
[ADB] Removing forwarded port socket connection: 38945
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR forward --remove tcp:38945’
[FlutterDriver] Waiting 3000ms before retrying
[FlutterDriver] Attempt #9 of 10
[ADB] Forwarding system: 38945 to device: 38945
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR forward tcp:38945 tcp:38945’
[FlutterDriver] Connecting to Dart Observatory: ws://127.0.0.1:38945/t68qjBRnn5s=/ws
[FlutterDriver] Listing all isolates: [{“type”:“@Isolate”,“id”:“isolates/7430556232265575”,“name”:“main”,“number”:“7430556232265575”,“isSystemIsolate”:false,“isolateGroupId”:“isolateGroups/1737539488735018”}]
[FlutterDriver] “ext.flutter.driver” is not found in “extensionRPCs” [“ext.ui.window.impellerEnabled”,“ext.dart.io.httpEnableTimelineLogging”,“ext.dart.io.getSocketProfile”,“ext.dart.io.socketProfilingEnabled”,“ext.dart.io.clearSocketProfile”,“ext.dart.io.getVersion”,“ext.dart.io.getHttpProfile”,“ext.dart.io.getHttpProfileRequest”,“ext.dart.io.clearHttpProfile”,“ext.flutter.exit”,“ext.flutter.connectedVmServiceUri”,“ext.flutter.activeDevToolsServerAddress”,“ext.flutter.timeDilation”,“ext.flutter.profilePlatformChannels”,“ext.flutter.debugDumpRenderTree”,“ext.flutter.debugDumpSemanticsTreeInTraversalOrder”,“ext.flutter.debugDumpSemanticsTreeInInverseHitTestOrder”,“ext.flutter.profileRenderObjectPaints”,“ext.flutter.profileRenderObjectLayouts”,“ext.flutter.debugDumpApp”,“ext.flutter.debugDumpFocusTree”,“ext.flutter.showPerformanceOverlay”,“ext.flutter.didSendFirstFrameEvent”,“ext.flutter.didSendFirstFrameRasterizedEvent”,“ext.flutter.profileWidgetBuilds”,“ext.flutter.profileUserWidgetBuilds”]
[ADB] Removing forwarded port socket connection: 38945
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR forward --remove tcp:38945’
[FlutterDriver] Waiting 3000ms before retrying
[FlutterDriver] Attempt #10 of 10
[ADB] Forwarding system: 38945 to device: 38945
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR forward tcp:38945 tcp:38945’
[FlutterDriver] Connecting to Dart Observatory: ws://127.0.0.1:38945/t68qjBRnn5s=/ws
[FlutterDriver] Listing all isolates: [{“type”:“@Isolate”,“id”:“isolates/7430556232265575”,“name”:“main”,“number”:“7430556232265575”,“isSystemIsolate”:false,“isolateGroupId”:“isolateGroups/1737539488735018”}]
[FlutterDriver] “ext.flutter.driver” is not found in “extensionRPCs” [“ext.ui.window.impellerEnabled”,“ext.dart.io.httpEnableTimelineLogging”,“ext.dart.io.getSocketProfile”,“ext.dart.io.socketProfilingEnabled”,“ext.dart.io.clearSocketProfile”,“ext.dart.io.getVersion”,“ext.dart.io.getHttpProfile”,“ext.dart.io.getHttpProfileRequest”,“ext.dart.io.clearHttpProfile”,“ext.flutter.exit”,“ext.flutter.connectedVmServiceUri”,“ext.flutter.activeDevToolsServerAddress”,“ext.flutter.timeDilation”,“ext.flutter.profilePlatformChannels”,“ext.flutter.debugDumpRenderTree”,“ext.flutter.debugDumpSemanticsTreeInTraversalOrder”,“ext.flutter.debugDumpSemanticsTreeInInverseHitTestOrder”,“ext.flutter.profileRenderObjectPaints”,“ext.flutter.profileRenderObjectLayouts”,“ext.flutter.debugDumpApp”,“ext.flutter.debugDumpFocusTree”,“ext.flutter.showPerformanceOverlay”,“ext.flutter.didSendFirstFrameEvent”,“ext.flutter.didSendFirstFrameRasterizedEvent”,“ext.flutter.profileWidgetBuilds”,“ext.flutter.profileUserWidgetBuilds”]
[ADB] Removing forwarded port socket connection: 38945
[ADB] Running ‘C:\Users\Rsoft\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s R9ZR908HTNR forward --remove tcp:38945’
[FlutterDriver@8531 (3f2ff944)] Deleting Flutter Driver session
[FlutterDriver@8531 (3f2ff944)] Cleanup the port forward
[AppiumDriver@018e] Event ‘newSessionStarted’ logged at 1716808542462 (16:45:42 GMT+0530 (India Standard Time))
[AppiumDriver@018e] Encountered internal error running command: TypeError: Cannot read properties of undefined (reading ‘adb’)
[AppiumDriver@018e] at FlutterDriver.deleteSession (C:\Users\Rsoft.appium\node_modules\appium-flutter-driver\lib\driver.ts:125:34)
[AppiumDriver@018e] at FlutterDriver.createSession (C:\Users\Rsoft.appium\node_modules\appium-flutter-driver\lib\sessions\session.ts:59:16)
[AppiumDriver@018e] at AppiumDriver.createSession (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\lib\appium.js:717:35)
[HTTP] ← POST /session 500 52642 ms - 668
[HTTP]
[HTTP] → GET /session/71c03e3f-caf7-4fa8-9956-fc8cffc9d6a0/timeouts
[HTTP] {}
[AppiumDriver@018e] Encountered internal error running command: NoSuchDriverError: A session is either terminated or not started
[AppiumDriver@018e] at asyncHandler (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules@appium\base-driver\lib\protocol\protocol.js:315:15)
[AppiumDriver@018e] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules@appium\base-driver\lib\protocol\protocol.js:518:15
[AppiumDriver@018e] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[AppiumDriver@018e] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\route.js:144:13)
[AppiumDriver@018e] at Route.dispatch (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\route.js:114:3)
[AppiumDriver@018e] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[AppiumDriver@018e] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:284:15
[AppiumDriver@018e] at param (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:365:14)
[AppiumDriver@018e] at param (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:376:14)
[AppiumDriver@018e] at Function.process_params (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:421:3)
[AppiumDriver@018e] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[AppiumDriver@018e] at logger (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\morgan\index.js:144:5)
[AppiumDriver@018e] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[AppiumDriver@018e] at trim_prefix (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[AppiumDriver@018e] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[AppiumDriver@018e] at Function.process_params (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[AppiumDriver@018e] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[AppiumDriver@018e] at jsonParser (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\body-parser\lib\types\json.js:113:7)
[AppiumDriver@018e] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[AppiumDriver@018e] at trim_prefix (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[AppiumDriver@018e] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[AppiumDriver@018e] at Function.process_params (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[AppiumDriver@018e] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[AppiumDriver@018e] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:91:12)
[AppiumDriver@018e] at trim_prefix (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[AppiumDriver@018e] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[AppiumDriver@018e] at Function.process_params (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[AppiumDriver@018e] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[AppiumDriver@018e] at methodOverride (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\method-override\index.js:65:14)
[AppiumDriver@018e] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[AppiumDriver@018e] at trim_prefix (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[AppiumDriver@018e] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[AppiumDriver@018e] at Function.process_params (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[AppiumDriver@018e] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[AppiumDriver@018e] at urlencodedParser (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\body-parser\lib\types\urlencoded.js:91:7)
[AppiumDriver@018e] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[AppiumDriver@018e] at trim_prefix (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[AppiumDriver@018e] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[AppiumDriver@018e] at Function.process_params (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[AppiumDriver@018e] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[AppiumDriver@018e] at defaultToJSONContentType (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules@appium\base-driver\lib\express\middleware.js:58:3)
[AppiumDriver@018e] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[AppiumDriver@018e] at trim_prefix (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[AppiumDriver@018e] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[AppiumDriver@018e] at Function.process_params (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[AppiumDriver@018e] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[AppiumDriver@018e] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules@appium\base-driver\lib\express\middleware.js:50:5
[AppiumDriver@018e] at Layer.handle [as handle_request] (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[AppiumDriver@018e] at trim_prefix (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[AppiumDriver@018e] at C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[AppiumDriver@018e] at Function.process_params (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[AppiumDriver@018e] at next (C:\Users\Rsoft\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[HTTP] ← GET /session/71c03e3f-caf7-4fa8-9956-fc8cffc9d6a0/timeouts 404 41 ms - 7421
[HTTP]
[Appium] Received SIGINT - shutting down
[AppiumDriver@018e] There are no active sessions for cleanup
[HTTP] Waiting until the server is closed
[HTTP] Received server close event\

Hi,
Your picture is not very sharp and very difficult to view.

What exactly is happening and what do you expect.
Are you trying to locate a field based on the text in it? Such as the field Last Name?

If this is the case, then try using the hint attribute. For the flutter app that I test, the light coloured text that explains the field is found in the hint attribute.