Skip to content

Instantly share code, notes, and snippets.

@webinista
Last active April 10, 2023 23:07
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save webinista/4d279268a09576ebca434f127feb8241 to your computer and use it in GitHub Desktop.
Save webinista/4d279268a09576ebca434f127feb8241 to your computer and use it in GitHub Desktop.
A Pelican configuration for having a home page and blog index or landing page.
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
# --------------------------------------
# Now compatible with Pelican 4.0.x!
# --------------------------------------
# Added by me
import time
AUTHOR = 'Your Name'
SITENAME = ''
SITEURL = ''
TIMEZONE = 'America/New_York'
LOCALE = 'en_US'
FEED_DOMAIN = SITEURL
# Custom settings for my own site to use in the copyright notice.
CURRENT_YEAR = time.strftime("%Y")
THEME = '/path/to/theme/'
# Defines whether Pelican should use document-relative URLs or not. Only set this to True when developing/testing and only if you fully understand the effect it can have on links/feeds
# Uncomment following line if you want document-relative URLs when developing
# RELATIVE_URLS = True
# The default date format you want to use.
DEFAULT_DATE_FORMAT = '%d %B %Y'
DEFAULT_LANG = 'en-us'
# Whether to display pages on the menu of the template. Templates may or may not honor this setting.
DISPLAY_PAGES_ON_MENU = False
# Whether to display categories on the menu of the template.
DISPLAY_CATEGORIES_ON_MENU = False
# When you don’t specify a category in your post metadata, set this setting to True, and organize your articles in subfolders, the subfolder will become the category of your post. If set to False, DEFAULT_CATEGORY will be used as a fallback.
USE_FOLDER_AS_CATEGORY = True
# The default metadata you want to use for all articles and pages.
DEFAULT_METADATA = {
'description': 'A brief description of your site',
'status': 'draft'
}
# Delete the output directory, and all of its contents, before generating new files. This can be useful in preventing older, unnecessary files from persisting in your output. However, this is a destructive setting and should be handled with extreme care.
DELETE_OUTPUT_DIRECTORY = True
# Path to content directory to be processed by Pelican.
PATH = '/path/to/ARTICLE_PATHS'
# Name your content directory posts
ARTICLE_PATHS = ['posts']
# Exclude the pages directory from post processing - Not 100% sure this is necessary
ARTICLE_EXCLUDES = ['pages']
ARTICLE_URL = 'blog/{slug}/'
ARTICLE_SAVE_AS = 'blog/{slug}/index.html'
ARTICLE_ORDER_BY = 'date'
# List of templates that are used directly to render content. Typically direct templates are used to generate index pages for collections of content (e.g., tags and category index pages). If the tag and category collections are not needed, set DIRECT_TEMPLATES = ('index', 'archives')
DIRECT_TEMPLATES = ['index','archives','error']
# Provides the direct templates that should be paginated, and how many posst to display per page. If None, will fall back to the DEFAULT_PAGINATION value.
PAGINATED_TEMPLATES = {'index': 6, 'tag': None, 'category': None, 'archives': 9}
# Where to output the generated files.
OUTPUT_PATH = '/path/to/output'
# Auto generate slug from this source. Overridden by the Slug: property
SLUGIFY_SOURCE = 'title'
# When creating a short summary of an article, this will be the default length (measured in words) of the text created. This only applies if your content does not otherwise specify a summary. Setting to None will cause the summary to be a copy of the original content.
SUMMARY_MAX_LENGTH = 65
# Articles per page
DEFAULT_PAGINATION = 9
# Leave no orphans
DEFAULT_ORPHANS = 0
ARCHIVES_SAVE_AS = 'blog/index.html'
PAGINATION_PATTERNS = (
(1, '{base_name}/', '{base_name}/index.html'),
(2, '{base_name}/{number}/','{base_name}/{number}/index.html'),
)
# The static paths you want to have accessible on the output path “static”.
# By default, Pelican will copy the “images” folder to the output folder.
STATIC_PATHS = ['images', 'demos', 'media']
STATIC_EXCLUDES = ['_scss']
# Can include multiple paths
PLUGIN_PATHS = ['/path/to/pelican-plugins/']
PLUGINS = ['simple_footnotes']
CATEGORY_URL = 'category/{slug}/'
CATEGORY_SAVE_AS = 'category/{slug}/index.html'
TAG_URL = 'tag/{slug}/'
TAG_SAVE_AS = 'tag/{slug}/index.html'
PAGE_URL = '{slug}/'
PAGE_SAVE_AS = '{slug}/index.html'
# The URL to refer to an article draft.
DRAFT_URL = 'blog/drafts/{slug}/'
DRAFT_SAVE_AS = 'blog/drafts/{slug}/index.html'
# Build only modified content instead of all content
LOAD_CONTENT_CACHE = False
CACHE_CONTENT = False
# Allow Markdown in the summary and title
FORMATTED_FIELDS = ['summary', 'title']
# Feed generation is usually not desired when developing
FEED_ALL_RSS = 'blog/feeds/all.rss.xml'
FEED_ALL_ATOM = 'blog/feeds/all.atom.xml'
FEED_MAX_ITEMS = 15
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None
NEWEST_FIRST_ARCHIVES = True
# See https://pythonhosted.org/Markdown/reference.html#lazy_ol for lazy_ol settings
MARKDOWN = {
'extension_configs': {
'markdown.extensions.codehilite': {'css_class': 'highlight'},
'markdown.extensions.extra': {},
'markdown.extensions.meta': {},
},
'output_format': 'html5',
'lazy_ol': False
}
MENUITEMS = (
('Home','/'),
('About','/about/'),
('Contact','/contact/'),
('Blog','/blog/'),
)
@panatale1
Copy link

Is this in a repo anywhere where I can see how you generated your homepage and blog templates?

@webinista
Copy link
Author

I'm sorry that I didn't see this comment until today @panatale1. It isn't in a repo anywhere.

@AutomationTribe
Copy link

Microsoft Windows [Version 10.0.18362.267]
© 2019 Microsoft Corporation. All rights reserved.

C:\Users\mataga>appium --log-level debug --relaxed-security
[Appium] Welcome to Appium v2.0.0-beta.42
[Appium] Non-default server args:
[Appium] {
[Appium] relaxedSecurityEnabled: true
[Appium] }
[Appium] Attempting to load driver uiautomator2…
[debug] [Appium] Requiring driver at C:\Users\mataga.appium\node_modules\appium-uiautomator2-driver
[Appium] Attempting to load driver flutter…
[debug] [Appium] Requiring driver at C:\Users\mataga.appium\node_modules\appium-flutter-driver
[Appium] Appium REST http interface listener started on 0.0.0.0:4723
[Appium] Available drivers:
[Appium] - uiautomator2@2.4.6 (automationName ‘UiAutomator2’)
[Appium] - flutter@1.7.0 (automationName ‘Flutter’)
[Appium] No plugins have been installed. Use the “appium plugin” command to install the one(s) you want to use.
[HTTP] --> GET /status
[HTTP] {}
[debug] [AppiumDriver@619f] Calling AppiumDriver.getStatus() with args: []
[debug] [AppiumDriver@619f] Responding to client with driver.getStatus() result: {“build”:{“version”:“2.0.0-beta.42”}}
[HTTP] <-- GET /status 200 15 ms - 47
[HTTP]
[debug] [HTTP] Request idempotency key: 9fe920ae-54a4-404f-853e-00aeb02ad647
[HTTP] --> POST /session
[HTTP] {“capabilities”:{“firstMatch”:[{}],“alwaysMatch”:{“appium:app”:“C:\Users\mataga\Documents\SmileMoney\APKS\newBaby.apk”,“appium:automationName”:“UIAutomator2”,“appium:deviceName”:“smileMoney”,“platformName”:“android”}}}
[debug] [AppiumDriver@619f] Calling AppiumDriver.createSession() with args: [null,null,{“firstMatch”:[{}],“alwaysMatch”:{“appium:app”:“C:\Users\mataga\Documents\SmileMoney\APKS\newBaby.apk”,“appium:automationName”:“UIAutomator2”,“appium:deviceName”:“smileMoney”,“platformName”:“android”}}]
[debug] [AppiumDriver@619f] Event ‘newSessionRequested’ logged at 1663751842535 (10:17:22 GMT+0100 (West Africa 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\mataga.appium\node_modules\appium-uiautomator2-driver
[debug] [Appium] Requiring driver at C:\Users\mataga.appium\node_modules\appium-uiautomator2-driver
[AppiumDriver@619f] Appium v2.0.0-beta.42 creating new AndroidUiautomator2Driver (v2.4.6) session
[AppiumDriver@619f] Checking BaseDriver versions for Appium and AndroidUiautomator2Driver
[AppiumDriver@619f] Appium’s BaseDriver version is 8.6.1
[AppiumDriver@619f] AndroidUiautomator2Driver’s BaseDriver version is 8.6.1
[AppiumDriver@619f] Applying relaxed security to ‘AndroidUiautomator2Driver’ as per server command line argument. All insecure features will be enabled unless explicitly disabled by --deny-insecure
[debug] [AndroidUiautomator2Driver@aa8a] Creating session with W3C capabilities: {
[debug] [AndroidUiautomator2Driver@aa8a] “alwaysMatch”: {
[debug] [AndroidUiautomator2Driver@aa8a] “platformName”: “android”,
[debug] [AndroidUiautomator2Driver@aa8a] “appium:app”: “C:\Users\mataga\Documents\SmileMoney\APKS\newBaby.apk”,
[debug] [AndroidUiautomator2Driver@aa8a] “appium:automationName”: “UIAutomator2”,
[debug] [AndroidUiautomator2Driver@aa8a] “appium:deviceName”: “smileMoney”
[debug] [AndroidUiautomator2Driver@aa8a] },
[debug] [AndroidUiautomator2Driver@aa8a] “firstMatch”: [
[debug] [AndroidUiautomator2Driver@aa8a] {}
[debug] [AndroidUiautomator2Driver@aa8a] ]
[debug] [AndroidUiautomator2Driver@aa8a] }
[AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Session created with session id: ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4
[BaseDriver] Using local app ‘C:\Users\mataga\Documents\SmileMoney\APKS\newBaby.apk’
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Checking whether app is actually present
[ADB] Found 3 ‘build-tools’ folders under ‘C:\Users\mataga\AppData\Local\Android\Sdk’ (newest first):
[ADB] C:/Users/mataga/AppData/Local/Android/Sdk/build-tools/32.1.0-rc1
[ADB] C:/Users/mataga/AppData/Local/Android/Sdk/build-tools/32.0.0
[ADB] C:/Users/mataga/AppData/Local/Android/Sdk/build-tools/30.0.3
[ADB] Using ‘adb.exe’ from ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe’
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 start-server’
[AndroidDriver] Retrieving device list
[debug] [ADB] Trying to find a connected android device
[debug] [ADB] Getting connected devices
[debug] [ADB] Connected devices: [{“udid”:“emulator-5554”,“state”:“device”}]
[AndroidDriver] Using device: emulator-5554
[ADB] Using ‘adb.exe’ from ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe’
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 start-server’
[debug] [ADB] Setting device id to emulator-5554
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell getprop ro.build.version.sdk’
[debug] [ADB] Current device property ‘ro.build.version.sdk’: 29
[ADB] Getting device platform version
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell getprop ro.build.version.release’
[debug] [ADB] Current device property ‘ro.build.version.release’: 10
[debug] [ADB] Device API level: 29
[AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Relaxing hidden api policy
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 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’’
[debug] [AndroidDriver] Parsing package and activity from app manifest
[ADB] Package name: ‘com.renmoney.smilemoney’
[ADB] Main activity name: ‘com.renmoney.smilemoney.smilemoney.MainActivity’
[debug] [AndroidDriver] Parsed package and activity are: com.renmoney.smilemoney/com.renmoney.smilemoney.smilemoney.MainActivity
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 wait-for-device’
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell echo ping’
[debug] [AndroidDriver] Pushing settings apk to device…
[debug] [ADB] Getting install status for io.appium.settings
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell dumpsys package io.appium.settings’
[debug] [ADB] ‘io.appium.settings’ is installed
[debug] [ADB] Getting package info for ‘io.appium.settings’
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell dumpsys package io.appium.settings’
[debug] [ADB] The version name of the installed ‘io.appium.settings’ is greater or equal to the application version name (‘4.1.2’ >= ‘4.1.2’)
[debug] [ADB] There is no need to install/upgrade ‘C:\Users\mataga.appium\node_modules\appium-uiautomator2-driver\node_modules\io.appium.settings\apks\settings_apk-debug.apk’
[debug] [ADB] Getting IDs of all ‘io.appium.settings’ processes
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell ‘pgrep --help; echo $?’’
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell pgrep -f ([[:blank:]]|^)io.appium.settings([[:blank:]]|$)’
[debug] [AndroidDriver] io.appium.settings is already running. There is no need to reset its permissions.
[debug] [Logcat] Starting logs capture with command: C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 logcat -v threadtime
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Forwarding UiAutomator2 Server port 6790 to local port 8201
[debug] [ADB] Forwarding system: 8201 to device: 6790
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 forward tcp:8201 tcp:6790’
[debug] [ADB] Getting install status for io.appium.uiautomator2.server
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell dumpsys package io.appium.uiautomator2.server’
[debug] [ADB] ‘io.appium.uiautomator2.server’ is installed
[debug] [ADB] Getting package info for ‘io.appium.uiautomator2.server’
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell dumpsys package io.appium.uiautomator2.server’
[debug] [ADB] The version name of the installed ‘io.appium.uiautomator2.server’ is greater or equal to the application version name (‘5.6.2’ >= ‘5.6.2’)
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] io.appium.uiautomator2.server installation state: sameVersionInstalled
[debug] [ADB] Checking app cert for C:\Users\mataga.appium\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-v5.6.2.apk
[ADB] Using ‘apksigner.jar’ from ‘C:\Users\mataga\AppData\Local\Android\Sdk\build-tools\32.1.0-rc1\lib\apksigner.jar’
[debug] [ADB] Starting apksigner: ‘C:\Program Files\Java\jdk-11.0.15.1\bin\java.exe’ -Xmx1024M -Xss1m -jar C:\Users\mataga\AppData\Local\Android\Sdk\build-tools\32.1.0-rc1\lib\apksigner.jar verify --print-certs C:\Users\mataga.appium\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-v5.6.2.apk
[debug] [ADB] apksigner stdout: Signer #1 certificate DN: EMAILADDRESS=android@android.com, CN=Android, OU=Android, O=Android, L=Mountain View, ST=California, C=US
[debug] [ADB] Signer #1 certificate SHA-256 digest: a40da80a59d170caa950cf15c18c454d47a39b26989d8b640ecd745ba71bf5dc
[debug] [ADB] Signer #1 certificate SHA-1 digest: 61ed377e85d386a8dfee6b864bd85b0bfaa5af81
[debug] [ADB] Signer #1 certificate MD5 digest: e89b158e4bcf988ebd09eb83f5378e87
[debug] [ADB]
[debug] [ADB] sha256 hash did match for ‘appium-uiautomator2-server-v5.6.2.apk’
[ADB] ‘C:\Users\mataga.appium\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-v5.6.2.apk’ is signed with the default certificate
[debug] [ADB] Getting install status for io.appium.uiautomator2.server.test
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell dumpsys package io.appium.uiautomator2.server.test’
[debug] [ADB] ‘io.appium.uiautomator2.server.test’ is installed
[debug] [ADB] Checking app cert for C:\Users\mataga.appium\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-debug-androidTest.apk
[debug] [ADB] Starting apksigner: ‘C:\Program Files\Java\jdk-11.0.15.1\bin\java.exe’ -Xmx1024M -Xss1m -jar C:\Users\mataga\AppData\Local\Android\Sdk\build-tools\32.1.0-rc1\lib\apksigner.jar verify --print-certs C:\Users\mataga.appium\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-debug-androidTest.apk
[debug] [ADB] apksigner stdout: Signer #1 certificate DN: EMAILADDRESS=android@android.com, CN=Android, OU=Android, O=Android, L=Mountain View, ST=California, C=US
[debug] [ADB] Signer #1 certificate SHA-256 digest: a40da80a59d170caa950cf15c18c454d47a39b26989d8b640ecd745ba71bf5dc
[debug] [ADB] Signer #1 certificate SHA-1 digest: 61ed377e85d386a8dfee6b864bd85b0bfaa5af81
[debug] [ADB] Signer #1 certificate MD5 digest: e89b158e4bcf988ebd09eb83f5378e87
[debug] [ADB]
[debug] [ADB] sha256 hash did match for ‘appium-uiautomator2-server-debug-androidTest.apk’
[ADB] ‘C:\Users\mataga.appium\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-debug-androidTest.apk’ is signed with the default certificate
[AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Server packages are not going to be (re)installed
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Waiting up to 30000ms for services to be available
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell pm list instrumentation’
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] 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
[debug] [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",";"]]
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell dumpsys deviceidle whitelist +io.appium.settings ; dumpsys deviceidle whitelist +io.appium.uiautomator2.server ; dumpsys deviceidle whitelist +io.appium.uiautomator2.server.test ;’
[debug] [ADB] Checking app cert for C:\Users\mataga\Documents\SmileMoney\APKS\newBaby.apk
[debug] [ADB] Starting apksigner: ‘C:\Program Files\Java\jdk-11.0.15.1\bin\java.exe’ -Xmx1024M -Xss1m -jar C:\Users\mataga\AppData\Local\Android\Sdk\build-tools\32.1.0-rc1\lib\apksigner.jar verify --print-certs C:\Users\mataga\Documents\SmileMoney\APKS\newBaby.apk
[HTTP] --> GET /session/b3dcc063-0a18-4710-b9ff-6e42236761c6/timeouts
[HTTP] {}
[debug] [AppiumDriver@619f] Encountered internal error running command: NoSuchDriverError: A session is either terminated or not started
[debug] [AppiumDriver@619f] at asyncHandler (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules@appium\base-driver\lib\protocol\protocol.js:268:15)
[debug] [AppiumDriver@619f] at C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules@appium\base-driver\lib\protocol\protocol.js:462:15
[debug] [AppiumDriver@619f] at Layer.handle [as handle_request] (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[debug] [AppiumDriver@619f] at next (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\route.js:144:13)
[debug] [AppiumDriver@619f] at Route.dispatch (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\route.js:114:3)
[debug] [AppiumDriver@619f] at Layer.handle [as handle_request] (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[debug] [AppiumDriver@619f] at C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:284:15
[debug] [AppiumDriver@619f] at param (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:365:14)
[debug] [AppiumDriver@619f] at param (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:376:14)
[debug] [AppiumDriver@619f] at Function.process_params (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:421:3)
[debug] [AppiumDriver@619f] at next (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[debug] [AppiumDriver@619f] at logger (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\morgan\index.js:144:5)
[debug] [AppiumDriver@619f] at Layer.handle [as handle_request] (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[debug] [AppiumDriver@619f] at trim_prefix (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[debug] [AppiumDriver@619f] at C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[debug] [AppiumDriver@619f] at Function.process_params (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[debug] [AppiumDriver@619f] at next (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[debug] [AppiumDriver@619f] at jsonParser (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\body-parser\lib\types\json.js:110:7)
[debug] [AppiumDriver@619f] at Layer.handle [as handle_request] (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[debug] [AppiumDriver@619f] at trim_prefix (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[debug] [AppiumDriver@619f] at C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[debug] [AppiumDriver@619f] at Function.process_params (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[debug] [AppiumDriver@619f] at next (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[debug] [AppiumDriver@619f] at Layer.handle [as handle_request] (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:91:12)
[debug] [AppiumDriver@619f] at trim_prefix (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[debug] [AppiumDriver@619f] at C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[debug] [AppiumDriver@619f] at Function.process_params (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[debug] [AppiumDriver@619f] at next (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[debug] [AppiumDriver@619f] at methodOverride (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\method-override\index.js:65:14)
[debug] [AppiumDriver@619f] at Layer.handle [as handle_request] (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[debug] [AppiumDriver@619f] at trim_prefix (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[debug] [AppiumDriver@619f] at C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[debug] [AppiumDriver@619f] at Function.process_params (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[debug] [AppiumDriver@619f] at next (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[debug] [AppiumDriver@619f] at urlencodedParser (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\body-parser\lib\types\urlencoded.js:91:7)
[debug] [AppiumDriver@619f] at Layer.handle [as handle_request] (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[debug] [AppiumDriver@619f] at trim_prefix (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[debug] [AppiumDriver@619f] at C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[debug] [AppiumDriver@619f] at Function.process_params (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[debug] [AppiumDriver@619f] at next (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[debug] [AppiumDriver@619f] at defaultToJSONContentType (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules@appium\base-driver\lib\express\middleware.js:58:3)
[debug] [AppiumDriver@619f] at Layer.handle [as handle_request] (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[debug] [AppiumDriver@619f] at trim_prefix (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[debug] [AppiumDriver@619f] at C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[debug] [AppiumDriver@619f] at Function.process_params (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[debug] [AppiumDriver@619f] at next (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[HTTP] <-- GET /session/b3dcc063-0a18-4710-b9ff-6e42236761c6/timeouts 404 115 ms - 6633
[HTTP]
[debug] [ADB] apksigner stdout: Signer #1 certificate DN: C=US, O=Android, CN=Android Debug
[debug] [ADB] Signer #1 certificate SHA-256 digest: b4aa3f3e0666c67b94e68d6a2bd2376b6f2ec23ae93dea65da42c2c1d316229f
[debug] [ADB] Signer #1 certificate SHA-1 digest: 6fbe158876acf68858935a552af5bec3c2bbc537
[debug] [ADB] Signer #1 certificate MD5 digest: f719c8d62323a9205e4f8a1aa2e72751
[debug] [ADB]
[ADB] ‘C:\Users\mataga\Documents\SmileMoney\APKS\newBaby.apk’ is signed with a non-default certificate
[debug] [ADB] Getting install status for com.renmoney.smilemoney
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell dumpsys package com.renmoney.smilemoney’
[debug] [ADB] ‘com.renmoney.smilemoney’ is installed
[debug] [ADB] Getting package info for ‘com.renmoney.smilemoney’
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell dumpsys package com.renmoney.smilemoney’
[debug] [ADB] The version code of the installed ‘com.renmoney.smilemoney’ is greater than the application version code (33 > 32)
[debug] [ADB] There is no need to downgrade ‘com.renmoney.smilemoney’
[AndroidDriver] Performing fast reset on ‘com.renmoney.smilemoney’
[debug] [ADB] Getting install status for com.renmoney.smilemoney
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell dumpsys package com.renmoney.smilemoney’
[debug] [ADB] ‘com.renmoney.smilemoney’ is installed
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell am force-stop com.renmoney.smilemoney’
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell pm clear com.renmoney.smilemoney’
[debug] [AndroidDriver] Performed fast reset on the installed ‘com.renmoney.smilemoney’ application (stop and clear)
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Performing shallow cleanup of automation leftovers
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] No obsolete sessions have been detected (socket hang up)
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell am force-stop io.appium.uiautomator2.server.test’
[AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Starting UIAutomator2 server 5.6.2
[AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Using UIAutomator2 server from ‘C:\Users\mataga.appium\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-v5.6.2.apk’ and test from ‘C:\Users\mataga.appium\node_modules\appium-uiautomator2-driver\node_modules\appium-uiautomator2-server\apks\appium-uiautomator2-server-debug-androidTest.apk’
[AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Waiting up to 30000ms for UiAutomator2 to be online…
[debug] [ADB] Creating ADB subprocess with args: ["-P",5037,"-s",“emulator-5554”,“shell”,“am”,“instrument”,"-w","-e",“disableAnalytics”,true,“io.appium.uiautomator2.server.test/androidx.test.runner.AndroidJUnitRunner”]
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Matched ‘/status’ to command name ‘getStatus’
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Proxying [GET /status] to [GET http://127.0.0.1:8201/status] with no body
[AndroidUiautomator2Driver@aa8a (ad0e8bb2)] socket hang up
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Matched ‘/status’ to command name ‘getStatus’
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Proxying [GET /status] to [GET http://127.0.0.1:8201/status] with no body
[AndroidUiautomator2Driver@aa8a (ad0e8bb2)] socket hang up
[debug] [Instrumentation] io.appium.uiautomator2.server.test.AppiumUiAutomator2Server:
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Matched ‘/status’ to command name ‘getStatus’
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Proxying [GET /status] to [GET http://127.0.0.1:8201/status] with no body
[AndroidUiautomator2Driver@aa8a (ad0e8bb2)] socket hang up
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Matched ‘/status’ to command name ‘getStatus’
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Proxying [GET /status] to [GET http://127.0.0.1:8201/status] with no body
[AndroidUiautomator2Driver@aa8a (ad0e8bb2)] socket hang up
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Matched ‘/status’ to command name ‘getStatus’
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Proxying [GET /status] to [GET http://127.0.0.1:8201/status] with no body
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Got response with status 200: {“sessionId”:“None”,“value”:{“message”:“UiAutomator2 Server is ready to accept commands”,“ready”:true}}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] The initialization of the instrumentation process took 4371ms
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Matched ‘/session’ to command name ‘createSession’
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Proxying [POST /session] to [POST http://127.0.0.1:8201/session] with body: {“capabilities”:{“firstMatch”:[{“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“platformName”:“android”,“app”:“C:\Users\mataga\Documents\SmileMoney\APKS\newBaby.apk”,“automationName”:“UIAutomator2”,“deviceName”:“smileMoney”},“platformName”:“android”,“app”:“C:\Users\mataga\Documents\SmileMoney\APKS\newBaby.apk”,“automationName”:“UIAutomator2”,“deviceName”:“emulator-5554”,“deviceUDID”:“emulator-5554”,“appPackage”:“com.renmoney.smilemoney”}],“alwaysMatch”:{}}}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Got response with status 200: {“sessionId”:“e2e12bc7-e05b-43d5-b377-0002d610b5d1”,“value”:{“capabilities”:{“firstMatch”:[{“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“platformName”:“android”,“app”:“C:\Users\mataga\Documents\SmileMoney\APKS\newBaby.apk”,“automationName”:“UIAutomator2”,“deviceName”:“smileMoney”},“platformName”:“android”,“app”:“C:\Users\mataga\Documents\SmileMoney\APKS\newBaby.apk”,“automationName”:“UIAutomator2”,“deviceName”:“emulator-5554”,“deviceUDID”:“emulator-5554”,“appPackage”:“com.renmoney.smilemoney”}],“alwaysMatch”:{}},“sessionId”:“e2e12bc7-e05b-43d5-b377-0002d610b5d1”}}
[AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Determined the downstream protocol as ‘W3C’
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Proxying [GET /appium/device/info] to [GET http://127.0.0.1:8201/session/e2e12bc7-e05b-43d5-b377-0002d610b5d1/appium/device/info] with no body
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Got response with status 200: {“sessionId”:“e2e12bc7-e05b-43d5-b377-0002d610b5d1”,“value”:{“androidId”:“4143bbd270a551e0”,“apiVersion”:“29”,“bluetooth”:null,“brand”:“google”,“carrierName”:“Android”,“displayDensity”:440,“locale”:“en_US”,“manufacturer”:“Google”,“model”:“Android SDK built for x86_64”,“networks”:[{“capabilities”:{“SSID”:null,“linkDownBandwidthKbps”:1048576,“linkUpstreamBandwidthKbps”:1048576,“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”:-30,“transportTypes”:“TRANSPORT_WIFI”},“detailedState”:“CONNECTED”,“extraInfo”:null,“isAvailable”:true,“isConnected”:true,“isFailover”:false,“isRoaming”:false,“state”:“CONNECTED”,“subtype”:0,“subtypeName”:"",“type”:1,“typeName”:“WIFI”},{“capabilities”:{“SSID”:null,“linkDownBandwidthKbps”:102400,“linkUpstreamBandwidthKbps”:51200,“networkC…
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell dumpsys window’
[AndroidDriver] Screen already unlocked, doing nothing
[AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Starting 'com.renmoney.smilemoney/com.renmoney.smilemoney.smilemoney.MainActivity and waiting for ‘com.renmoney.smilemoney/com.renmoney.smilemoney.smilemoney.MainActivity’
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell am start -W -n com.renmoney.smilemoney/com.renmoney.smilemoney.smilemoney.MainActivity -S -a android.intent.action.MAIN -c android.intent.category.LAUNCHER -f 0x10200000’
[debug] [ADB] Waiting up to 20000ms for activity matching pkg: ‘com.renmoney.smilemoney’ and activity: ‘com.renmoney.smilemoney.smilemoney.MainActivity’ to be focused
[debug] [ADB] Possible activities, to be checked: ‘com.renmoney.smilemoney.smilemoney.MainActivity’, ‘com.renmoney.smilemoney.com.renmoney.smilemoney.smilemoney.MainActivity’
[debug] [ADB] Getting focused package and activity
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell dumpsys window displays’
[debug] [ADB] Found package: ‘com.renmoney.smilemoney’ and fully qualified activity name : ‘com.renmoney.smilemoney.smilemoney.MainActivity’
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Proxying [GET /appium/device/pixel_ratio] to [GET http://127.0.0.1:8201/session/e2e12bc7-e05b-43d5-b377-0002d610b5d1/appium/device/pixel_ratio] with no body
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Got response with status 200: {“sessionId”:“e2e12bc7-e05b-43d5-b377-0002d610b5d1”,“value”:2.75}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Matched ‘/appium/device/system_bars’ to command name ‘getSystemBars’
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Proxying [GET /appium/device/system_bars] to [GET http://127.0.0.1:8201/session/e2e12bc7-e05b-43d5-b377-0002d610b5d1/appium/device/system_bars] with no body
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Got response with status 200: {“sessionId”:“e2e12bc7-e05b-43d5-b377-0002d610b5d1”,“value”:{“statusBar”:66}}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Matched ‘/window/current/size’ to command name ‘getWindowSize’
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Proxying [GET /window/current/size] to [GET http://127.0.0.1:8201/session/e2e12bc7-e05b-43d5-b377-0002d610b5d1/window/current/size] with no body
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Got response with status 200: {“sessionId”:“e2e12bc7-e05b-43d5-b377-0002d610b5d1”,“value”:{“height”:2208,“width”:1080}}
[AppiumDriver@619f] New AndroidUiautomator2Driver session created successfully, session ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4 added to master session list
[debug] [AppiumDriver@619f] Event ‘newSessionStarted’ logged at 1663751862325 (10:17:42 GMT+0100 (West Africa Standard Time))
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Cached the protocol value ‘W3C’ for the new session ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Responding to client with driver.createSession() result: {“capabilities”:{“platform”:“LINUX”,“webStorageEnabled”:false,“takesScreenshot”:true,“javascriptEnabled”:true,“databaseEnabled”:false,“networkConnectionEnabled”:true,“locationContextEnabled”:false,“warnings”:{},“desired”:{“platformName”:“android”,“app”:“C:\Users\mataga\Documents\SmileMoney\APKS\newBaby.apk”,“automationName”:“UIAutomator2”,“deviceName”:“smileMoney”},“platformName”:“android”,“app”:“C:\Users\mataga\Documents\SmileMoney\APKS\newBaby.apk”,“automationName”:“UIAutomator2”,“deviceName”:“emulator-5554”,“deviceUDID”:“emulator-5554”,“appPackage”:“com.renmoney.smilemoney”,“deviceApiLevel”:29,“platformVersion”:“10”,“deviceScreenSize”:“1080x2340”,“deviceScreenDensity”:440,“deviceModel”:“Android SDK built for x86_64”,“deviceManufacturer”:“Google”,“pixelRatio”:2.75,“statBarHeight”:66,“viewportRect”:{“left”:0,“top”:66,“width”:1080,“height”:2142}}}
[HTTP] <-- POST /session 200 19800 ms - 932
[HTTP]
[HTTP] --> POST /session/ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4/element
[HTTP] {“using”:“xpath”,“value”:”/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.FrameLayout/android.view.View/android.view.View/android.view.View/android.view.View/android.view.View/android.widget.EditText"}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Calling AppiumDriver.findElement() with args: [“xpath”,"/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.FrameLayout/android.view.View/android.view.View/android.view.View/android.view.View/android.view.View/android.widget.EditText",“ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4”]
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Valid locator strategies for this request: xpath, id, class name, accessibility id, css selector, -android uiautomator
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Waiting up to 0 ms for condition
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Matched ‘/element’ to command name ‘findElement’
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Proxying [POST /element] to [POST http://127.0.0.1:8201/session/e2e12bc7-e05b-43d5-b377-0002d610b5d1/element] with body: {“strategy”:“xpath”,“selector”:"/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.FrameLayout/android.view.View/android.view.View/android.view.View/android.view.View/android.view.View/android.widget.EditText",“context”:"",“multiple”:false}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Got response with status 200: {“sessionId”:“e2e12bc7-e05b-43d5-b377-0002d610b5d1”,“value”:{“ELEMENT”:“00000000-0000-01da-0000-000a00000003”,“element-6066-11e4-a52e-4f735466cecf”:“00000000-0000-01da-0000-000a00000003”}}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Responding to client with driver.findElement() result: {“element-6066-11e4-a52e-4f735466cecf”:“00000000-0000-01da-0000-000a00000003”,“ELEMENT”:“00000000-0000-01da-0000-000a00000003”}
[HTTP] <-- POST /session/ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4/element 200 1564 ms - 137
[HTTP]
[HTTP] --> POST /session/ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4/element/00000000-0000-01da-0000-000a00000003/click
[HTTP] {“id”:“00000000-0000-01da-0000-000a00000003”}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Calling AppiumDriver.click() with args: [“00000000-0000-01da-0000-000a00000003”,“ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4”]
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Matched ‘/element/00000000-0000-01da-0000-000a00000003/click’ to command name ‘click’
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Proxying [POST /element/00000000-0000-01da-0000-000a00000003/click] to [POST http://127.0.0.1:8201/session/e2e12bc7-e05b-43d5-b377-0002d610b5d1/element/00000000-0000-01da-0000-000a00000003/click] with body: {“element”:“00000000-0000-01da-0000-000a00000003”}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Got response with status 200: {“sessionId”:“e2e12bc7-e05b-43d5-b377-0002d610b5d1”,“value”:null}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Responding to client with driver.click() result: null
[HTTP] <-- POST /session/ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4/element/00000000-0000-01da-0000-000a00000003/click 200 109 ms - 14
[HTTP]
[HTTP] --> POST /session/ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4/element
[HTTP] {“using”:“xpath”,“value”:"/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.FrameLayout/android.view.View/android.view.View/android.view.View/android.view.View/android.view.View/android.widget.EditText"}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Calling AppiumDriver.findElement() with args: [“xpath”,"/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.FrameLayout/android.view.View/android.view.View/android.view.View/android.view.View/android.view.View/android.widget.EditText",“ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4”]
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Valid locator strategies for this request: xpath, id, class name, accessibility id, css selector, -android uiautomator
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Waiting up to 0 ms for condition
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Matched ‘/element’ to command name ‘findElement’
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Proxying [POST /element] to [POST http://127.0.0.1:8201/session/e2e12bc7-e05b-43d5-b377-0002d610b5d1/element] with body: {“strategy”:“xpath”,“selector”:"/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.FrameLayout/android.view.View/android.view.View/android.view.View/android.view.View/android.view.View/android.widget.EditText",“context”:"",“multiple”:false}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Got response with status 200: {“sessionId”:“e2e12bc7-e05b-43d5-b377-0002d610b5d1”,“value”:{“ELEMENT”:“00000000-0000-01da-0000-000a00000003”,“element-6066-11e4-a52e-4f735466cecf”:“00000000-0000-01da-0000-000a00000003”}}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Responding to client with driver.findElement() result: {“element-6066-11e4-a52e-4f735466cecf”:“00000000-0000-01da-0000-000a00000003”,“ELEMENT”:“00000000-0000-01da-0000-000a00000003”}
[HTTP] <-- POST /session/ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4/element 200 820 ms - 137
[HTTP]
[HTTP] --> POST /session/ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4/element/00000000-0000-01da-0000-000a00000003/value
[HTTP] {“id”:“00000000-0000-01da-0000-000a00000003”,“text”:“08150367435”,“value”:[“0”,“8”,“1”,“5”,“0”,“3”,“6”,“7”,“4”,“3”,“5”]}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Calling AppiumDriver.setValue() with args: [[“0”,“8”,“1”,“5”,“0”,“3”,“6”,“7”,“4”,“3”,“5”],“00000000-0000-01da-0000-000a00000003”,“ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4”]
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Matched ‘/element/00000000-0000-01da-0000-000a00000003/value’ to command name ‘setValue’
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Added ‘value’ property [“0”,“8”,“1”,“5”,“0”,“3”,“6”,“7”,“4”,“3”,“5”] to ‘setValue’ request body
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Proxying [POST /element/00000000-0000-01da-0000-000a00000003/value] to [POST http://127.0.0.1:8201/session/e2e12bc7-e05b-43d5-b377-0002d610b5d1/element/00000000-0000-01da-0000-000a00000003/value] with body: {“elementId”:“00000000-0000-01da-0000-000a00000003”,“text”:“08150367435”,“replace”:false,“value”:[“0”,“8”,“1”,“5”,“0”,“3”,“6”,“7”,“4”,“3”,“5”]}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Got response with status 200: {“sessionId”:“e2e12bc7-e05b-43d5-b377-0002d610b5d1”,“value”:null}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Responding to client with driver.setValue() result: null
[HTTP] <-- POST /session/ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4/element/00000000-0000-01da-0000-000a00000003/value 200 92 ms - 14
[HTTP]
[HTTP] --> POST /session/ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4/element
[HTTP] {“using”:“accessibility id”,“value”:“Continue”}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Calling AppiumDriver.findElement() with args: [“accessibility id”,“Continue”,“ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4”]
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Valid locator strategies for this request: xpath, id, class name, accessibility id, css selector, -android uiautomator
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Waiting up to 0 ms for condition
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Matched ‘/element’ to command name ‘findElement’
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Proxying [POST /element] to [POST http://127.0.0.1:8201/session/e2e12bc7-e05b-43d5-b377-0002d610b5d1/element] with body: {“strategy”:“accessibility id”,“selector”:“Continue”,“context”:"",“multiple”:false}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Got response with status 200: {“sessionId”:“e2e12bc7-e05b-43d5-b377-0002d610b5d1”,“value”:{“ELEMENT”:“00000000-0000-01da-0000-000b00000003”,“element-6066-11e4-a52e-4f735466cecf”:“00000000-0000-01da-0000-000b00000003”}}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Responding to client with driver.findElement() result: {“element-6066-11e4-a52e-4f735466cecf”:“00000000-0000-01da-0000-000b00000003”,“ELEMENT”:“00000000-0000-01da-0000-000b00000003”}
[HTTP] <-- POST /session/ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4/element 200 62 ms - 137
[HTTP]
[HTTP] --> POST /session/ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4/element/00000000-0000-01da-0000-000b00000003/click
[HTTP] {“id”:“00000000-0000-01da-0000-000b00000003”}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Calling AppiumDriver.click() with args: [“00000000-0000-01da-0000-000b00000003”,“ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4”]
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Matched ‘/element/00000000-0000-01da-0000-000b00000003/click’ to command name ‘click’
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Proxying [POST /element/00000000-0000-01da-0000-000b00000003/click] to [POST http://127.0.0.1:8201/session/e2e12bc7-e05b-43d5-b377-0002d610b5d1/element/00000000-0000-01da-0000-000b00000003/click] with body: {“element”:“00000000-0000-01da-0000-000b00000003”}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Got response with status 200: {“sessionId”:“e2e12bc7-e05b-43d5-b377-0002d610b5d1”,“value”:null}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Responding to client with driver.click() result: null
[HTTP] <-- POST /session/ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4/element/00000000-0000-01da-0000-000b00000003/click 200 118 ms - 14
[HTTP]
[HTTP] --> POST /session/ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4/element
[HTTP] {“using”:“xpath”,“value”:"/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.FrameLayout/android.view.View/android.view.View/android.view.View/android.view.View/android.view.View/android.view.View[2]"}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Calling AppiumDriver.findElement() with args: [“xpath”,"/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.FrameLayout/android.view.View/android.view.View/android.view.View/android.view.View/android.view.View/android.view.View[2]",“ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4”]
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Valid locator strategies for this request: xpath, id, class name, accessibility id, css selector, -android uiautomator
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Waiting up to 0 ms for condition
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Matched ‘/element’ to command name ‘findElement’
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Proxying [POST /element] to [POST http://127.0.0.1:8201/session/e2e12bc7-e05b-43d5-b377-0002d610b5d1/element] with body: {“strategy”:“xpath”,“selector”:"/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.FrameLayout/android.view.View/android.view.View/android.view.View/android.view.View/android.view.View/android.view.View[2]",“context”:"",“multiple”:false}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Got response with status 200: {“sessionId”:“e2e12bc7-e05b-43d5-b377-0002d610b5d1”,“value”:{“ELEMENT”:“00000000-0000-01da-0000-000f00000003”,“element-6066-11e4-a52e-4f735466cecf”:“00000000-0000-01da-0000-000f00000003”}}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Responding to client with driver.findElement() result: {“element-6066-11e4-a52e-4f735466cecf”:“00000000-0000-01da-0000-000f00000003”,“ELEMENT”:“00000000-0000-01da-0000-000f00000003”}
[HTTP] <-- POST /session/ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4/element 200 145 ms - 137
[HTTP]
[HTTP] --> POST /session/ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4/element/00000000-0000-01da-0000-000f00000003/click
[HTTP] {“id”:“00000000-0000-01da-0000-000f00000003”}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Calling AppiumDriver.click() with args: [“00000000-0000-01da-0000-000f00000003”,“ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4”]
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Matched ‘/element/00000000-0000-01da-0000-000f00000003/click’ to command name ‘click’
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Proxying [POST /element/00000000-0000-01da-0000-000f00000003/click] to [POST http://127.0.0.1:8201/session/e2e12bc7-e05b-43d5-b377-0002d610b5d1/element/00000000-0000-01da-0000-000f00000003/click] with body: {“element”:“00000000-0000-01da-0000-000f00000003”}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Got response with status 200: {“sessionId”:“e2e12bc7-e05b-43d5-b377-0002d610b5d1”,“value”:null}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Responding to client with driver.click() result: null
[HTTP] <-- POST /session/ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4/element/00000000-0000-01da-0000-000f00000003/click 200 735 ms - 14
[HTTP]
[HTTP] --> POST /session/ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4/execute/sync
[HTTP] {“script”:“mobile: type”,“args”:[{“text”:“234567”}]}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Calling AppiumDriver.execute() with args: [“mobile: type”,[{“text”:“234567”}],“ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4”]
[AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Executing native command ‘mobile: type’
[debug] [ADB] Typing 6 characters
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell settings get secure default_input_method’
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell ime enable io.appium.settings/.UnicodeIME’
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell ime set io.appium.settings/.UnicodeIME’
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell input text 234567’
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell ime set com.google.android.inputmethod.latin/com.android.inputmethod.latin.LatinIME’
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Responding to client with driver.execute() result: true
[HTTP] <-- POST /session/ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4/execute/sync 200 2018 ms - 14
[HTTP]
[HTTP] --> POST /session/ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4/appium/device/hide_keyboard
[HTTP] {}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Calling AppiumDriver.hideKeyboard() with args: [null,null,null,null,“ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4”]
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell dumpsys input_method’
[ADB] Keyboard has no UI; no closing necessary
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Responding to client with driver.hideKeyboard() result: false
[HTTP] <-- POST /session/ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4/appium/device/hide_keyboard 200 586 ms - 15
[HTTP]
[HTTP] --> POST /session/ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4/element
[HTTP] {“using”:“accessibility id”,“value”:“Continue”}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Calling AppiumDriver.findElement() with args: [“accessibility id”,“Continue”,“ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4”]
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Valid locator strategies for this request: xpath, id, class name, accessibility id, css selector, -android uiautomator
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Waiting up to 0 ms for condition
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Matched ‘/element’ to command name ‘findElement’
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Proxying [POST /element] to [POST http://127.0.0.1:8201/session/e2e12bc7-e05b-43d5-b377-0002d610b5d1/element] with body: {“strategy”:“accessibility id”,“selector”:“Continue”,“context”:"",“multiple”:false}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Got response with status 200: {“sessionId”:“e2e12bc7-e05b-43d5-b377-0002d610b5d1”,“value”:{“ELEMENT”:“00000000-0000-01da-0000-001100000003”,“element-6066-11e4-a52e-4f735466cecf”:“00000000-0000-01da-0000-001100000003”}}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Responding to client with driver.findElement() result: {“element-6066-11e4-a52e-4f735466cecf”:“00000000-0000-01da-0000-001100000003”,“ELEMENT”:“00000000-0000-01da-0000-001100000003”}
[HTTP] <-- POST /session/ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4/element 200 58 ms - 137
[HTTP]
[HTTP] --> DELETE /session/ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4
[HTTP] {}
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Calling AppiumDriver.deleteSession() with args: [“ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4”]
[debug] [AppiumDriver@619f] Event ‘quitSessionRequested’ logged at 1663751897390 (10:18:17 GMT+0100 (West Africa Standard Time))
[AppiumDriver@619f] Removing session ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4 from our master session list
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Deleting UiAutomator2 session
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Deleting UiAutomator2 server session
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Matched ‘/’ to command name ‘deleteSession’
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Proxying [DELETE /] to [DELETE http://127.0.0.1:8201/session/e2e12bc7-e05b-43d5-b377-0002d610b5d1] with no body
[debug] [AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Got response with status 200: {“sessionId”:“e2e12bc7-e05b-43d5-b377-0002d610b5d1”,“value”:null}
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell dumpsys activity services io.appium.settings/.recorder.RecorderService’
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell am force-stop com.renmoney.smilemoney’
[debug] [Logcat] Stopping logcat capture
[debug] [ADB] Removing forwarded port socket connection: 8201
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 forward --remove tcp:8201’
[AndroidUiautomator2Driver@aa8a (ad0e8bb2)] Restoring hidden api policy to the device default configuration
[debug] [ADB] Running ‘C:\Users\mataga\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell ‘settings delete global hidden_api_policy_pre_p_apps;settings delete global hidden_api_policy_p_apps;settings delete global hidden_api_policy’’
[debug] [Instrumentation] .
[debug] [Instrumentation] Time: 42.218
[debug] [Instrumentation]
[debug] [Instrumentation] OK (1 test)
[debug] [AppiumDriver@619f] Event ‘quitSessionFinished’ logged at 1663751898375 (10:18:18 GMT+0100 (West Africa Standard Time))
[debug] [AppiumDriver@619f] Received response: null
[debug] [AppiumDriver@619f] But deleting session, so not returning
[debug] [AppiumDriver@619f] Responding to client with driver.deleteSession() result: null
[HTTP] <-- DELETE /session/ad0e8bb2-1b12-4e59-895c-2c10f5e3b3c4 200 1002 ms - 14
[HTTP]
[debug] [Instrumentation] The process has exited with code 0
[HTTP] --> GET /session/b3dcc063-0a18-4710-b9ff-6e42236761c6/timeouts
[HTTP] {}
[debug] [AppiumDriver@619f] Encountered internal error running command: NoSuchDriverError: A session is either terminated or not started
[debug] [AppiumDriver@619f] at asyncHandler (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules@appium\base-driver\lib\protocol\protocol.js:268:15)
[debug] [AppiumDriver@619f] at C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules@appium\base-driver\lib\protocol\protocol.js:462:15
[debug] [AppiumDriver@619f] at Layer.handle [as handle_request] (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[debug] [AppiumDriver@619f] at next (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\route.js:144:13)
[debug] [AppiumDriver@619f] at Route.dispatch (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\route.js:114:3)
[debug] [AppiumDriver@619f] at Layer.handle [as handle_request] (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[debug] [AppiumDriver@619f] at C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:284:15
[debug] [AppiumDriver@619f] at param (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:365:14)
[debug] [AppiumDriver@619f] at param (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:376:14)
[debug] [AppiumDriver@619f] at Function.process_params (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:421:3)
[debug] [AppiumDriver@619f] at next (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[debug] [AppiumDriver@619f] at logger (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\morgan\index.js:144:5)
[debug] [AppiumDriver@619f] at Layer.handle [as handle_request] (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[debug] [AppiumDriver@619f] at trim_prefix (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[debug] [AppiumDriver@619f] at C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[debug] [AppiumDriver@619f] at Function.process_params (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[debug] [AppiumDriver@619f] at next (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[debug] [AppiumDriver@619f] at jsonParser (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\body-parser\lib\types\json.js:110:7)
[debug] [AppiumDriver@619f] at Layer.handle [as handle_request] (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[debug] [AppiumDriver@619f] at trim_prefix (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[debug] [AppiumDriver@619f] at C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[debug] [AppiumDriver@619f] at Function.process_params (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[debug] [AppiumDriver@619f] at next (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[debug] [AppiumDriver@619f] at Layer.handle [as handle_request] (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:91:12)
[debug] [AppiumDriver@619f] at trim_prefix (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[debug] [AppiumDriver@619f] at C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[debug] [AppiumDriver@619f] at Function.process_params (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[debug] [AppiumDriver@619f] at next (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[debug] [AppiumDriver@619f] at methodOverride (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\method-override\index.js:65:14)
[debug] [AppiumDriver@619f] at Layer.handle [as handle_request] (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[debug] [AppiumDriver@619f] at trim_prefix (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[debug] [AppiumDriver@619f] at C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[debug] [AppiumDriver@619f] at Function.process_params (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[debug] [AppiumDriver@619f] at next (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[debug] [AppiumDriver@619f] at urlencodedParser (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\body-parser\lib\types\urlencoded.js:91:7)
[debug] [AppiumDriver@619f] at Layer.handle [as handle_request] (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[debug] [AppiumDriver@619f] at trim_prefix (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[debug] [AppiumDriver@619f] at C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[debug] [AppiumDriver@619f] at Function.process_params (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[debug] [AppiumDriver@619f] at next (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[debug] [AppiumDriver@619f] at defaultToJSONContentType (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules@appium\base-driver\lib\express\middleware.js:58:3)
[debug] [AppiumDriver@619f] at Layer.handle [as handle_request] (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\layer.js:95:5)
[debug] [AppiumDriver@619f] at trim_prefix (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:328:13)
[debug] [AppiumDriver@619f] at C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:286:9
[debug] [AppiumDriver@619f] at Function.process_params (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:346:12)
[debug] [AppiumDriver@619f] at next (C:\Users\mataga\AppData\Roaming\npm\node_modules\appium\node_modules\express\lib\router\index.js:280:10)
[HTTP] <-- GET /session/b3dcc063-0a18-4710-b9ff-6e42236761c6/timeouts 404 27542 ms - 6633
[HTTP]

@helderc
Copy link

helderc commented Apr 10, 2023

Thanks for the file. Would you mind showing your folder structure?

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