Skip to content

Instantly share code, notes, and snippets.

[Appium] Attempting to load plugin images...
[debug] [Appium] Requiring plugin at C:\Users\deepakv\.appium\node_modules\@appium\images-plugin
[Appium] Welcome to Appium v2.0.0-rc.3
[Appium] Non-default server args:
[Appium] {
[Appium] allowInsecure: [
[Appium] 'ALLOW_INSECURE'
[Appium] ],
[Appium] basePath: '/wd/hub',
[Appium] relaxedSecurityEnabled: true,
@dipakkumar1225
dipakkumar1225 / DeepLink_1
Last active June 30, 2023 09:19
DeepLink_1
@dipakkumar1225
dipakkumar1225 / Using with .setNoReset(true)
Created September 25, 2023 17:34
Using with .setNoReset(true)
[Appium] Attempting to load plugin images...
[Appium] Welcome to Appium v2.1.3
[Appium] Non-default server args:
[Appium] { address: '127.0.0.1',
[Appium] allowInsecure: [ 'adb_shell' ],
[Appium] basePath: '/wd/hub/',
[Appium] loglevel: 'info:debug',
[Appium] relaxedSecurityEnabled: true,
[Appium] sessionOverride: true,
[Appium] useDrivers: [ 'UiAutomator2' ],
@dipakkumar1225
dipakkumar1225 / Using without .setNoReset(true)
Created September 25, 2023 17:36
Using without .setNoReset(true)
[Appium] Attempting to load plugin images...
[Appium] Welcome to Appium v2.1.3
[Appium] Non-default server args:
[Appium] { address: '127.0.0.1',
[Appium] allowInsecure: [ 'adb_shell' ],
[Appium] basePath: '/wd/hub/',
[Appium] loglevel: 'info:debug',
[Appium] relaxedSecurityEnabled: true,
[Appium] sessionOverride: true,
[Appium] useDrivers: [ 'UiAutomator2' ],
@dipakkumar1225
dipakkumar1225 / Complete Log
Created September 28, 2023 08:50
Complete Log
[HTTP] --> GET /wd/hub/status
[HTTP] {}
[AppiumDriver@0de4] Plugins which can handle cmd 'getStatus': images,element-wait
[AppiumDriver@0de4] Plugin element-wait is now handling cmd 'getStatus'
[AppiumDriver@0de4] Plugin images is now handling cmd 'getStatus'
[AppiumDriver@0de4] Executing default handling behavior for command 'getStatus'
[HTTP] <-- GET /wd/hub/status 200 1 ms - 110
[HTTP]
[HTTP] --> POST /wd/hub/session
[HTTP] {"capabilities":{"firstMatch":[{}],"alwaysMatch":{"appium:app":"D:\\Automation-Framework\\Generic\\app\\android\\Android-MyDemoAppRN.1.3.0.build-244.apk","appium:appActivity":"com.saucelabs.mydemoapp.rn.MainActivity","appium:appPackage":"com.saucelabs.mydemoapp.rn","appium:autoGrantPermissions":true,"appium:automationName":"UIAutomator2","appium:fullReset":false,"appium:ignoreHiddenApiPolicyError":true,"appium:networkConnectionEnabled":true,"appium:noReset":true,"appium:perfLoggingPrefs":"{\"network\": \"all\"}","appium:platformVersion":"13","appium:resetKeyboard":true,"appium:shouldTe
@dipakkumar1225
dipakkumar1225 / Wait-Plugin.txt
Created October 19, 2023 05:32
Wait-Plugin.txt
[Appium] Attempting to load plugin element-wait...
[Appium] Attempting to load plugin gestures...
[Appium] Attempting to load plugin appium-dashboard...
[ADB] Found 3 'build-tools' folders under 'D:\Software_Installed\Android_Sdk' (newest first):
[ADB] D:\Software_Installed\Android_Sdk\build-tools\34.0.0
[ADB] D:\Software_Installed\Android_Sdk\build-tools\33.0.2
[ADB] D:\Software_Installed\Android_Sdk\build-tools\30.0.3
[ADB] Using 'adb.exe' from 'D:\Software_Installed\Android_Sdk\platform-tools\adb.exe'
[Appium] Welcome to Appium v2.1.3
[Appium] Non-default server args:
@dipakkumar1225
dipakkumar1225 / Unsupported CSS selector.txt
Created October 19, 2023 16:31
Unsupported CSS selector
[Appium] Welcome to Appium v2.1.3
[Appium] Non-default server args:
[Appium] { address: '127.0.0.1',
[Appium] basePath: '/wd/hub/',
[Appium] loglevel: 'info:debug',
[Appium] relaxedSecurityEnabled: true,
[Appium] sessionOverride: true,
[Appium] useDrivers: [ 'uiautomator2' ] }
[Appium] Attempting to load driver uiautomator2...
[Appium] Appium REST http interface listener started on http://127.0.0.1:4723/wd/hub
@dipakkumar1225
dipakkumar1225 / Working.txt
Created October 19, 2023 16:37
Working.txt
[Appium] Welcome to Appium v2.1.3
[Appium] Non-default server args:
[Appium] { address: '127.0.0.1',
[Appium] basePath: '/wd/hub/',
[Appium] loglevel: 'info:debug',
[Appium] relaxedSecurityEnabled: true,
[Appium] sessionOverride: true,
[Appium] useDrivers: [ 'uiautomator2' ] }
[Appium] Attempting to load driver uiautomator2...
[Appium] Appium REST http interface listener started on http://127.0.0.1:4723/wd/hub
@dipakkumar1225
dipakkumar1225 / CucumberListener
Created October 28, 2023 15:50
CucumberListener
public class CucumberListener implements ConcurrentEventListener {
public static String stepName;
AtomicInteger atomicInteger = new AtomicInteger(1);
@Override
public void setEventPublisher(EventPublisher eventPublisher) {
eventPublisher.registerHandlerFor(TestRunStarted.class, this::beforeTestRun);
eventPublisher.registerHandlerFor(TestSourceRead.class,
this::readFeatureFile);
public class CucumberListener implements ConcurrentEventListener {
public static String stepName;
AtomicInteger atomicInteger = new AtomicInteger(1);
@Override
public void setEventPublisher(EventPublisher eventPublisher) {
eventPublisher.registerHandlerFor(TestRunStarted.class, this::beforeTestRun);
eventPublisher.registerHandlerFor(TestSourceRead.class, this::readFeatureFile);
eventPublisher.registerHandlerFor(TestRunFinished.class, this::afterTestRun);