- 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 the App Bundle ID for iOS?
There is no way to look up bundle IDs directly in the Apple iOS app store. Follow the steps below to find the iOS app bundle IDs.
If your App is in the App Store
- Find the app online (Google for the iTunes link). For this example we use Apple pages: https://itunes.apple.com/app/pages/id361309726?mt=8
- Copy the number after the id in the URL. (Here: 361309726)
- Open https://itunes.apple.com/lookup?id=361309726 where you replace the ID with the one you looked up.
- Search the output for bundleID. In this example it looks like this (next to a bunch of other data): "bundleId":"com.apple.Pages". So for Apple, the bundle ID is com.apple.Pages
If you have IPA File Locally
- Copy the .ipa file and rename the extension to .zip. (E.g. Pages.ipa will become Pages.zip)
- Unzip the zip file. You will get a new folder named like the zip file.
- Search for the file iTunesMetadata.plist in that new folder.
- Open the file with a text editor and search for softwareVersionBundleId. For Pages this looks like this and is com.apple.Pages:

If you only have the App on Phone
- Use a tool like iExplorer that allows you to browse your device storage directly.
- Connect your iPhone/iPad to your Mac via USB and open iExplorer or a similar utility.
- Open the Apps folder on your device and locate the app you’re interested in.
-
Locate the iTunesMetadata.plist file and follow the steps like you just unpacked the ipa above.

Check App Build for Simulator
If you plan to automate tests on simulators, the app must be specifically built for the simulator platform. While testing on a physical device, the app must be built for the ARM platform.
You can check the build type of your app file following the steps below:
Checking Build Type of iOS App
- Change the extension from .ipa to .zip and then extract it. You will find a payload folder inside the .zip that has the .app file.
-
Use Terminal on the Mac and run this command:
lipo -info myapp.app/myapp
Replace myapp with whatever the name of your files are after you extract them. You should see output for i386 or x86_64. If you see output for only ARM, then it's for real devices only.