- NLPs
Retrieve Value in Text Element
Capture Dropdown Elements
Unable to Select Radiobutton
Unable to Click Checkbox
Clearing the Session or Cookies
UI Identifier NLP
Drag & Drop NLP
Uploading Files NLP
Use MySQL Addon in NLPs- setup
Server Docker Deployment Errors
Secured Business Application Support
Troubleshooting Restricted Access to Testsigma
Why mobile device not displayed in Testsigma Mobile Test Recorder?
Unable to Create New Test Session
Agent Startup Failure Due to Used Ports
Tests Permanently Queued in Local Executions
Fix Testsigma Agent Registration Failures
Testsigma Agent Cleanup
Need of Apache Tomcat for Testsigma Agent- web apps
URL not accessible
Test Queued for a Long Time
Issues with UI Identifiers
Missing Elements in Recorder
Collecting HAR File
Errors with Browser Session
Page Loading Issues- mobile apps
Failed to Start Mobile Test Recorder
Troubleshooting “Failed to perform action Mobile Test Recorder” error
Why Test Execution State is Queued for a Long Time?
Why Mobile App Keeps Stopping After Successful Launch?
More pre-requisite settings
Why am I not able to start WDA Process on iPhone?
What are the Most Common causes for Click/Tap NLP Failure?
How to Find App Package & Activity in Android?
Cross-environment Compatible ID Locators (Android)
Why Accessibility IDs Over other Locators?
What are Common Android Issues & Proposed Solutions?
How to Find the App Bundle ID for iOS?
Developer Mode (iOS 16 & Above)
How to Handle iOS App Compatibility Issues?
How to Disable Play Protect for SMS Forwarder Installation?
How to Capture Network Logs in an Android Application?
How to Find App Package & Activity in Android?
Test execution of Android applications in Testsigma (or in General) requires a few characteristic details about the application to locate the application and the specific feature to be tested. They are:
- App Package Name
- App Activity Name
Each Android app has a unique identifier, like a Java package name, like com.example.myapp. This identifier helps find your app on devices and the Google Play Store.
Moreover, an Android application will have multiple Activities or Pages, each containing elements like fields or buttons for testing.
In simple terms, An Activity in an Android Application is similar to a Web page in a Web Application or Website.
The App Package Name helps locate the application for testing purposes, while the App Activity Name pinpoints the specific page to be tested.
Prerequisite for ADB
- Android SDK should be installed and set up on the computer.
Steps to Find App Details Using ADB
Let us try finding the details of the Whatsapp application in this case.
- Connect your Android device or emulator to your PC/Mac. Open the app you wish to inspect, in this case, WhatsApp.
- Open a Command Prompt or Terminal window and run the adb devices command. This will display a list of connected devices with their unique device ID.

-
Use the following commands to retrive information about the currently open application:
- For Mac/Linux: adb shell dumpsys window | grep -E 'mCurrentFocus'
- For Windows: adb shell dumpsys window | find "mCurrentFocus"
-
The output will display the Android Application Package name and Application Activity name.
- For example, here, com.whatsapp is the package name, and com.whatsapp.HomeActivity is the activity name.

- For example, here, com.whatsapp is the package name, and com.whatsapp.HomeActivity is the activity name.
Ensure the WhatsApp app is open on the device and the device screen is unlocked before executing these steps. This applies to any android application installed on the device.
ℹ️More Info:
The package name can also be verified by tapping More Details on the app's Google Play Store page.