- 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?
Unable to retrieve value stored in text element
Often the value entered in the fields is confused with text. But it is the value of the value attribute of a text field that is returned in the form of a string. So, instead of the NLP Store text from the element element into a variable test data, the NLP Store the value for the attribute attribute of the element element into a variable test data should be used.
To identify if a web element holds a value or a text follow the below steps:
- Right-click on the element and select Inspect from the drop-down list
- On the developer console:
- Type or paste the following code into the Console, and then press Enter:
$0.innerText
If the expected string is returned, the web element holds a text. In such cases, the NLP Store text from the element element into a variable test data should be used.
- Type or paste the following code into the Console, and then press Enter:
- If the returned value is null, type or paste the following code into the console and press Enter.
$0.value
If the expected string is returned, the web element holds a value. In such cases, the NLP Store the value for the attribute attribute of the element element into a variable test data should be used.