Get numbers from string
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2022
02:30 AM
11-09-2022
02:30 AM
Get numbers from string
How can I get numbers with string. I need to print only the numbers that contains string
How can I scroll down in test complete by using JavaScript
Labels:
- Labels:
-
Script Tests
3 REPLIES 3
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2022
05:04 AM
11-09-2022
05:04 AM
Do you have an example of your data?
Example,
function Test1()
{
var val = parseInt("-077");
Log.Message(val);
var val = parseFloat("384.75a");
Log.Message(val);
}
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2022
09:46 PM
11-09-2022
09:46 PM
Examples like see all 55 results. I need to fetch 55 and print
Another issue was Scrolldown is not working other than keys and scrollinto
view which way I can scrolldown
Another issue was Scrolldown is not working other than keys and scrollinto
view which way I can scrolldown
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2022
01:23 AM
11-10-2022
01:23 AM
I misread your question, sorry. You want to find the length of a string? See JavaScript String length
