In the above example aqString.Replace replaces the \" USD\" with \"\". That leaves only the number portion. At that point aqConvert.StrToInt converts the string to an integer. Obviously, you'll need to substitute your variables in the right places above.
Relecant help topics:
aqConvert.StrToInt Method | TestComplete Documentation
aqString.Replace Method | TestComplete Documentation
Caution: I haven't done any keyword testing in years. I also haven't tested the above approach. However, I think it should get you close to what you want.
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"203","kudosSumWeight":1,"repliesCount":0,"postTime":"2025-01-15T09:16:09.959-08:00","lastPublishTime":"2025-01-15T09:16:09.959-08:00","metrics":{"__typename":"MessageMetrics","views":21},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:TestComplete_forum/community:nwkab66374board:testcomplete-questions/message:273802/message:273836","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"customFields":[],"readOnly":false,"editFrozen":false,"body@stringLength":"1614","rawBody":"You should be able to accomplish what you're describing in a Keyword test without having to create a script by using the \"Run Code Snippet\" action with the aqConvert and aqString methods.
Assuming you already have a variable with the string containing the currency label that would look something like this:
In the above example aqString.Replace replaces the \" USD\" with \"\". That leaves only the number portion. At that point aqConvert.StrToInt converts the string to an integer. Obviously, you'll need to substitute your variables in the right places above.
Relecant help topics:
aqConvert.StrToInt Method | TestComplete Documentation
aqString.Replace Method | TestComplete Documentation
Caution: I haven't done any keyword testing in years. I also haven't tested the above approach. However, I think it should get you close to what you want.
","images":{"__typename":"AssociatedImageConnection","edges":[{"__typename":"AssociatedImageEdge","cursor":"MjUuMnwyLjF8b3wyNXxfTlZffDE","node":{"__ref":"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNzM4MzYtV043N1ZS?revision=1\"}"}}],"totalCount":1,"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"attachments":{"__typename":"AttachmentConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"timeToRead":1,"currentRevision":{"__ref":"Revision:revision:273836_1"},"latestVersion":null,"messagePolicies":{"__typename":"MessagePolicies","canModerateSpamMessage":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","key":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","args":[]}}}},"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/cmstMzMtV3lDSm9v\"}":{"__typename":"AssociatedImage","url":"https://community.smartbear.com/t5/s/nwkab66374/images/cmstMzMtV3lDSm9v","height":20,"width":20,"mimeType":"image/png"},"Rank:rank:33":{"__typename":"Rank","id":"rank:33","position":4,"name":"Champion Level 3","color":"FF730B","icon":{"__ref":"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/cmstMzMtV3lDSm9v\"}"},"rankStyle":"OUTLINE"},"User:user:104801":{"__typename":"User","id":"user:104801","uid":104801,"login":"rraghvani","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2022-01-18T00:46:16.751-08:00"},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://community.smartbear.com/t5/s/nwkab66374/images/dS0xMDQ4MDEtMTg1NDFpRTRGRjZBNEU5NURBMjRCOA"},"rank":{"__ref":"Rank:rank:33"},"entityType":"USER","eventPath":"community:nwkab66374/user:104801"},"ModerationData:moderation_data:273813":{"__typename":"ModerationData","id":"moderation_data:273813","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:273813":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:104801"},"id":"message:273813","revisionNum":1,"uid":273813,"depth":1,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:testcomplete-questions"},"parent":{"__ref":"ForumTopicMessage:message:273802"},"conversation":{"__ref":"Conversation:conversation:273802"},"subject":"Re: Desktop app keyword test, extract alphanum, edit and convert to number for later use?","moderationData":{"__ref":"ModerationData:moderation_data:273813"},"body":"See https://support.smartbear.com/testcomplete/docs/reference/program-objects/aqstring/index.html and https://www.w3schools.com/js/js_string_methods.asp
\nScripting this in JavaScript, will be easy to do, and there will be plenty of examples on the Internet.
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"208","kudosSumWeight":0,"repliesCount":0,"postTime":"2025-01-15T01:28:12.843-08:00","lastPublishTime":"2025-01-15T01:28:12.843-08:00","metrics":{"__typename":"MessageMetrics","views":85},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:TestComplete_forum/community:nwkab66374board:testcomplete-questions/message:273802/message:273813","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"customFields":[],"readOnly":false,"editFrozen":false,"body@stringLength":"601","rawBody":"See https://support.smartbear.com/testcomplete/docs/reference/program-objects/aqstring/index.html and https://www.w3schools.com/js/js_string_methods.asp
\nScripting this in JavaScript, will be easy to do, and there will be plenty of examples on the Internet.
","images":{"__typename":"AssociatedImageConnection","edges":[],"totalCount":0,"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"attachments":{"__typename":"AttachmentConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"timeToRead":1,"currentRevision":{"__ref":"Revision:revision:273813_1"},"latestVersion":null,"messagePolicies":{"__typename":"MessagePolicies","canModerateSpamMessage":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","key":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","args":[]}}}},"ModerationData:moderation_data:273817":{"__typename":"ModerationData","id":"moderation_data:273817","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":"member"},"ForumReplyMessage:message:273817":{"__typename":"ForumReplyMessage","uid":273817,"id":"message:273817","revisionNum":6,"author":{"__ref":"User:user:-1"},"readOnly":false,"repliesCount":11,"depth":1,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:testcomplete-questions"},"parent":{"__ref":"ForumTopicMessage:message:273802"},"conversation":{"__ref":"Conversation:conversation:273802"},"subject":"Re: Desktop app keyword test, extract alphanum, edit and convert to number for later use?","moderationData":{"__ref":"ModerationData:moderation_data:273817"},"body":"EDITED
See my second post sent later in the day. In that post there is a video showing you how to create the exact test you are trying to create
-----
This is the way I would do this:
Firstly, when searching/googling for how to do steps 1 and 2, you would type the following (these are actually 1 step) 'testcomplete, how to extract text from app'.
function extractFloatValue(inputString) {\n // Use a regular expression to match the numeric part of the string\n const match = inputString.match(/[\\d,]+\\.\\d+/);\n if (match) {\n // Remove commas and convert the matched numeric part to a floating-point number\n return parseFloat(match[0].replace(/,/g, ''));\n }\n // Return null if no numeric part is found\n return null;\n}
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"213","kudosSumWeight":0,"postTime":"2025-01-15T04:40:00.983-08:00","lastPublishTime":"2025-01-15T11:16:47.246-08:00","metrics":{"__typename":"MessageMetrics","views":7},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:TestComplete_forum/community:nwkab66374board:testcomplete-questions/message:273802/message:273817","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuMnwyLjF8b3wzfDE0OjAsMzk6MXwx","node":{"__ref":"ForumReplyMessage:message:273822"}}]},"customFields":[],"editFrozen":false,"body@stringLength":"2965","rawBody":"
EDITED
See my second post sent later in the day. In that post there is a video showing you how to create the exact test you are trying to create
-----
This is the way I would do this:
Firstly, when searching/googling for how to do steps 1 and 2, you would type the following (these are actually 1 step) 'testcomplete, how to extract text from app'.
","images":{"__typename":"AssociatedImageConnection","edges":[],"totalCount":0,"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"attachments":{"__typename":"AttachmentConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"timeToRead":2,"currentRevision":{"__ref":"Revision:revision:273817_6"},"latestVersion":null,"messagePolicies":{"__typename":"MessagePolicies","canModerateSpamMessage":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","key":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","args":[]}}}},"ModerationData:moderation_data:273822":{"__typename":"ModerationData","id":"moderation_data:273822","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":"member"},"ForumReplyMessage:message:273822":{"__typename":"ForumReplyMessage","uid":273822,"id":"message:273822","revisionNum":1,"author":{"__ref":"User:user:128255"},"readOnly":false,"repliesCount":10,"depth":2,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:testcomplete-questions"},"parent":{"__ref":"ForumReplyMessage:message:273817"},"conversation":{"__ref":"Conversation:conversation:273802"},"subject":"Re: Desktop app keyword test, extract alphanum, edit and convert to number for later use?","moderationData":{"__ref":"ModerationData:moderation_data:273822"},"body":"
Thanks for the video, I did tons of googling and scouring of the docs and forums, but never found this particular video. I'll have a look at it. As for using Javascript to do the string manipulation, I guess if that's the only way then that's what I'll have to do... I was just really hoping to keep this all GUI/Nocode. But I suppose the occasional helper function like this is acceptable. This is about my skill level with coding and a you rightly pointed out, we have LLMs now to handle this and much more as needed (I've found Claude to be superior for coding tasks btw, though I haven't tried ChatGPT for any in the last couple of months).
Thanks again!
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"213","kudosSumWeight":1,"postTime":"2025-01-15T06:36:23.060-08:00","lastPublishTime":"2025-01-15T06:36:23.060-08:00","metrics":{"__typename":"MessageMetrics","views":84},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:TestComplete_forum/community:nwkab66374board:testcomplete-questions/message:273802/message:273822","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuMnwyLjF8b3wxfDE0OjAsMzk6MXwx","node":{"__ref":"ForumReplyMessage:message:273823"}}]},"customFields":[],"editFrozen":false,"body@stringLength":"695","rawBody":"Thanks for the video, I did tons of googling and scouring of the docs and forums, but never found this particular video. I'll have a look at it. As for using Javascript to do the string manipulation, I guess if that's the only way then that's what I'll have to do... I was just really hoping to keep this all GUI/Nocode. But I suppose the occasional helper function like this is acceptable. This is about my skill level with coding and a you rightly pointed out, we have LLMs now to handle this and much more as needed (I've found Claude to be superior for coding tasks btw, though I haven't tried ChatGPT for any in the last couple of months).
Thanks again!
","images":{"__typename":"AssociatedImageConnection","edges":[],"totalCount":0,"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"attachments":{"__typename":"AttachmentConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"timeToRead":1,"currentRevision":{"__ref":"Revision:revision:273822_1"},"latestVersion":null,"messagePolicies":{"__typename":"MessagePolicies","canModerateSpamMessage":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","key":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","args":[]}}}},"ModerationData:moderation_data:273823":{"__typename":"ModerationData","id":"moderation_data:273823","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":"member"},"ForumReplyMessage:message:273823":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:128255"},"id":"message:273823","revisionNum":1,"uid":273823,"depth":3,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:testcomplete-questions"},"parent":{"__ref":"ForumReplyMessage:message:273822"},"conversation":{"__ref":"Conversation:conversation:273802"},"subject":"Re: Desktop app keyword test, extract alphanum, edit and convert to number for later use?","moderationData":{"__ref":"ModerationData:moderation_data:273823"},"body":"So I went through the video, and it really just gave me an additional way to do what I had already managed to do, and I'm in exactly the same spot. I have no way to tell that the value I captured has in fact been captured and can be used. This is not a web app, it has no fields I can insert the value into as shown in the video. I've been trying to just use Push Indicator Text to display the value from the variable, but it always appears to be empty. I don't know what I'm missing here.
What are some quick and reliable ways to validate the content of a variable? I was hoping there was just a page within TC that would show in realtime as things are happening, what data is in what location, but if there is such a place I haven't managed to find it.
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"208","kudosSumWeight":0,"repliesCount":9,"postTime":"2025-01-15T07:39:10.424-08:00","lastPublishTime":"2025-01-15T07:39:10.424-08:00","metrics":{"__typename":"MessageMetrics","views":73},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:TestComplete_forum/community:nwkab66374board:testcomplete-questions/message:273802/message:273823","customFields":[],"readOnly":false,"editFrozen":false,"body@stringLength":"797","rawBody":"So I went through the video, and it really just gave me an additional way to do what I had already managed to do, and I'm in exactly the same spot. I have no way to tell that the value I captured has in fact been captured and can be used. This is not a web app, it has no fields I can insert the value into as shown in the video. I've been trying to just use Push Indicator Text to display the value from the variable, but it always appears to be empty. I don't know what I'm missing here.
What are some quick and reliable ways to validate the content of a variable? I was hoping there was just a page within TC that would show in realtime as things are happening, what data is in what location, but if there is such a place I haven't managed to find it.
","images":{"__typename":"AssociatedImageConnection","edges":[],"totalCount":0,"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"attachments":{"__typename":"AttachmentConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"timeToRead":1,"currentRevision":{"__ref":"Revision:revision:273823_1"},"latestVersion":null,"messagePolicies":{"__typename":"MessagePolicies","canModerateSpamMessage":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","key":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","args":[]}}}},"ModerationData:moderation_data:273834":{"__typename":"ModerationData","id":"moderation_data:273834","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":"member"},"ForumReplyMessage:message:273834":{"__typename":"ForumReplyMessage","uid":273834,"id":"message:273834","revisionNum":4,"author":{"__ref":"User:user:-1"},"readOnly":false,"repliesCount":22,"depth":1,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:testcomplete-questions"},"parent":{"__ref":"ForumTopicMessage:message:273802"},"conversation":{"__ref":"Conversation:conversation:273802"},"subject":"Re: Desktop app keyword test, extract alphanum, edit and convert to number for later use?","moderationData":{"__ref":"ModerationData:moderation_data:273834"},"body":"During initial reply, I didn't have time to make a video and TC is usually pretty good about having videos showing how to do whatever you want to learn. However, surprised to see they didn't have a video for this. Not sure why.
Here is a detailed video showing how to do exactly what you are trying to do using TestComplete. As far as I know these are the only options available in TestComplete.
https://youtu.be/UU4UCJOlRGk
During initial reply, I didn't have time to make a video and TC is usually pretty good about having videos showing how to do whatever you want to learn. However, surprised to see they didn't have a video for this. Not sure why.
Here is a detailed video showing how to do exactly what you are trying to do using TestComplete. As far as I know these are the only options available in TestComplete.
https://youtu.be/UU4UCJOlRGk
I've already done essentially what's in that video (just not with a string in notepad), but in my case the name mapping doesn't work properly. I have a strong suspicion this is due to our application doing something with the identity of the object in question, that TC isn't handling. At this stage I'm going to need to talk to the developers and see if they can explain what's going on internally that is causing problems.
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"208","kudosSumWeight":0,"postTime":"2025-01-15T16:17:29.643-08:00","lastPublishTime":"2025-01-15T16:17:29.643-08:00","metrics":{"__typename":"MessageMetrics","views":60},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:TestComplete_forum/community:nwkab66374board:testcomplete-questions/message:273802/message:273851","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":true,"endCursor":"MjUuMnwyLjF8b3wxfDE0OjAsMzk6MXwx","hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuMnwyLjF8b3wxfDE0OjAsMzk6MXwx","node":{"__ref":"ForumReplyMessage:message:273863"}}]},"customFields":[],"editFrozen":false,"body@stringLength":"442","rawBody":"I've already done essentially what's in that video (just not with a string in notepad), but in my case the name mapping doesn't work properly. I have a strong suspicion this is due to our application doing something with the identity of the object in question, that TC isn't handling. At this stage I'm going to need to talk to the developers and see if they can explain what's going on internally that is causing problems.
","images":{"__typename":"AssociatedImageConnection","edges":[],"totalCount":0,"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"attachments":{"__typename":"AttachmentConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"timeToRead":1,"currentRevision":{"__ref":"Revision:revision:273851_1"},"latestVersion":null,"messagePolicies":{"__typename":"MessagePolicies","canModerateSpamMessage":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","key":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","args":[]}}}},"ModerationData:moderation_data:273863":{"__typename":"ModerationData","id":"moderation_data:273863","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":"member"},"ForumReplyMessage:message:273863":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:-1"},"id":"message:273863","revisionNum":1,"uid":273863,"depth":3,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:testcomplete-questions"},"parent":{"__ref":"ForumReplyMessage:message:273851"},"conversation":{"__ref":"Conversation:conversation:273802"},"subject":"Re: Desktop app keyword test, extract alphanum, edit and convert to number for later use?","moderationData":{"__ref":"ModerationData:moderation_data:273863"},"body":"Okay, go talk to a developer. No one who has offered you help and support on this page works for SmartBear. We are users of TestComplete who support our community on our own free time.
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"192","kudosSumWeight":0,"repliesCount":3,"postTime":"2025-01-16T05:29:55.079-08:00","lastPublishTime":"2025-01-16T05:29:55.079-08:00","metrics":{"__typename":"MessageMetrics","views":51},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:TestComplete_forum/community:nwkab66374board:testcomplete-questions/message:273802/message:273863","customFields":[],"readOnly":false,"editFrozen":false,"body@stringLength":"197","rawBody":"Okay, go talk to a developer. No one who has offered you help and support on this page works for SmartBear. We are users of TestComplete who support our community on our own free time.
","images":{"__typename":"AssociatedImageConnection","edges":[],"totalCount":0,"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"attachments":{"__typename":"AttachmentConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"timeToRead":1,"currentRevision":{"__ref":"Revision:revision:273863_1"},"latestVersion":null,"messagePolicies":{"__typename":"MessagePolicies","canModerateSpamMessage":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","key":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","args":[]}}}},"ModerationData:moderation_data:273837":{"__typename":"ModerationData","id":"moderation_data:273837","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:273837":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:104801"},"id":"message:273837","revisionNum":1,"uid":273837,"depth":1,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:testcomplete-questions"},"parent":{"__ref":"ForumTopicMessage:message:273802"},"conversation":{"__ref":"Conversation:conversation:273802"},"subject":"Re: Desktop app keyword test, extract alphanum, edit and convert to number for later use?","moderationData":{"__ref":"ModerationData:moderation_data:273837"},"body":"joscva how familiar are you with TestComplete?
\nWithout knowing the basics, it's going to be difficult to use TestComplete. I suggest you go through the appropriate tutorials shown in https://support.smartbear.com/testcomplete/docs/index.html to get a better understanding. Then decide whether you want to use JavaScript of Keyword Testing, but if you don't have any coding skills, then I suggest to use Keyword Testing - refer to the documentation on how to use this.
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"203","kudosSumWeight":0,"repliesCount":0,"postTime":"2025-01-15T09:25:23.568-08:00","lastPublishTime":"2025-01-15T09:25:23.568-08:00","metrics":{"__typename":"MessageMetrics","views":56},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:TestComplete_forum/community:nwkab66374board:testcomplete-questions/message:273802/message:273837","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"customFields":[],"readOnly":false,"editFrozen":false,"body@stringLength":"817","rawBody":"Without knowing the basics, it's going to be difficult to use TestComplete. I suggest you go through the appropriate tutorials shown in https://support.smartbear.com/testcomplete/docs/index.html to get a better understanding. Then decide whether you want to use JavaScript of Keyword Testing, but if you don't have any coding skills, then I suggest to use Keyword Testing - refer to the documentation on how to use this.
","images":{"__typename":"AssociatedImageConnection","edges":[],"totalCount":0,"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"attachments":{"__typename":"AttachmentConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"timeToRead":1,"currentRevision":{"__ref":"Revision:revision:273837_1"},"latestVersion":null,"messagePolicies":{"__typename":"MessagePolicies","canModerateSpamMessage":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","key":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","args":[]}}}},"Rank:rank:11":{"__typename":"Rank","id":"rank:11","position":17,"name":"Regular Contributor","color":"00537C","icon":null,"rankStyle":"OUTLINE"},"User:user:84839":{"__typename":"User","id":"user:84839","uid":84839,"login":"Hassan_Ballan","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2019-07-24T09:14:39.036-07:00"},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://community.smartbear.com/t5/s/nwkab66374/m_assets/avatars/default/avatar-2.svg?time=0"},"rank":{"__ref":"Rank:rank:11"},"entityType":"USER","eventPath":"community:nwkab66374/user:84839"},"ModerationData:moderation_data:273839":{"__typename":"ModerationData","id":"moderation_data:273839","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":"member"},"ForumReplyMessage:message:273839":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:84839"},"id":"message:273839","revisionNum":1,"uid":273839,"depth":1,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:testcomplete-questions"},"parent":{"__ref":"ForumTopicMessage:message:273802"},"conversation":{"__ref":"Conversation:conversation:273802"},"subject":"Re: Desktop app keyword test, extract alphanum, edit and convert to number for later use?","moderationData":{"__ref":"ModerationData:moderation_data:273839"},"body":"To handle automation some basic coding experience helps you go further and for sure you have learning curve.
\nTo summarize all the feed back you can do it in the following easy steps:
1. create two persistent variables of type string and integer on the project level
2. add to your keywordtests script the operations \"set variable\" and the value is the object contenttext, and \"run code snippet\" with below code
\n\n3. customize the code to your environment
Project.Variables.VarInteger = aqConvert.StrToInt(aqString.Replace(Project.Variables.VarString, \"Posts\", \"\"))
To handle automation some basic coding experience helps you go further and for sure you have learning curve.
\nTo summarize all the feed back you can do it in the following easy steps:
1. create two persistent variables of type string and integer on the project level
2. add to your keywordtests script the operations \"set variable\" and the value is the object contenttext, and \"run code snippet\" with below code
\n3. customize the code to your environment
Project.Variables.VarInteger = aqConvert.StrToInt(aqString.Replace(Project.Variables.VarString, \"Posts\", \"\"))
Here's a simple example using Keyword Test, which extracts the contentText value of \"$12.50 USD\" and stores this into a string variable called StrValue. The first Log.Message outputs the string value of StrValue, and the next Log.Message, using regular expression against StrValue, outputs the actual value.
\n\nYou can apply the same principles with your application.
\nJust to emphasise, it's vital that you learn the basics of TestComplete, otherwise it's going to be tricky to understand all responses, from the group forum that are helping you.
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"203","kudosSumWeight":0,"repliesCount":0,"postTime":"2025-01-19T04:34:06.813-08:00","lastPublishTime":"2025-01-19T04:34:06.813-08:00","metrics":{"__typename":"MessageMetrics","views":9},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:TestComplete_forum/community:nwkab66374board:testcomplete-questions/message:273802/message:273924","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"readOnly":false,"editFrozen":false,"body@stringLength":"935","rawBody":"Here's a simple example using Keyword Test, which extracts the contentText value of \"$12.50 USD\" and stores this into a string variable called StrValue. The first Log.Message outputs the string value of StrValue, and the next Log.Message, using regular expression against StrValue, outputs the actual value.
\nYou can apply the same principles with your application.
\nJust to emphasise, it's vital that you learn the basics of TestComplete, otherwise it's going to be tricky to understand all responses, from the group forum that are helping you.
","images":{"__typename":"AssociatedImageConnection","edges":[{"__typename":"AssociatedImageEdge","cursor":"MjUuMnwyLjF8b3wyNXxfTlZffDE","node":{"__ref":"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNzM5MjQtdDBXUHpl?revision=1\"}"}}],"totalCount":1,"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"timeToRead":1,"currentRevision":{"__ref":"Revision:revision:273924_1"},"latestVersion":null,"messagePolicies":{"__typename":"MessagePolicies","canModerateSpamMessage":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","key":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","args":[]}}}},"QueryVariables:MessageSolutions":{"__typename":"QueryVariables","id":"MessageSolutions","value":{"first":10,"constraints":{"topicId":{"eq":"message:273802"},"solution":{"eq":true}},"sorts":{"postTime":{"direction":"ASC"}},"useAvatar":true,"useAuthorLogin":true,"useAuthorRank":false,"useBody":true,"useKudosCount":false,"useTimeToRead":false,"useMedia":true,"useRepliesCount":false,"useSearchSnippet":false,"useAcceptedSolutionButton":true,"useSolvedBadge":false,"useAttachments":true,"useTags":false,"useUserHoverCard":false,"useNodeHoverCard":false,"usePreviewSubjectModal":false,"useMessageStatus":false}},"CachedAsset:text:en_US-components/messages/EscalatedMessageBanner-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/EscalatedMessageBanner-1741125846000","value":{"escalationMessage":"Escalated to Salesforce by {username} on {date}","viewDetails":"View Details","modalTitle":"Case Details","escalatedBy":"Escalated by: ","escalatedOn":"Escalated on: ","caseNumber":"Case Number: ","status":"Status: ","lastUpdateDate":"Last Update: ","automaticEscalation":"automatic escalation","anonymous":"Anonymous"},"localOverride":false},"CachedAsset:text:en_US-components/users/UserLink-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-components/users/UserLink-1741125846000","value":{"authorName":"View Profile: {author}","anonymous":"Anonymous"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/users/UserRank-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/users/UserRank-1741125846000","value":{"rankName":"{rankName}","userRank":"Author rank {rankName}"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageTime-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageTime-1741125846000","value":{"postTime":"Published: {time}","lastPublishTime":"Last Update: {time}","conversation.lastPostingActivityTime":"Last posting activity time: {time}","conversation.lastPostTime":"Last post time: {time}","moderationData.rejectTime":"Rejected time: {time}"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageSolvedBadge-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageSolvedBadge-1741125846000","value":{"solved":"Solved"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageSubject-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageSubject-1741125846000","value":{"noSubject":"(no subject)"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageBody-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageBody-1741125846000","value":{"showMessageBody":"Show More","mentionsErrorTitle":"{mentionsType, select, board {Board} user {User} message {Message} other {}} No Longer Available","mentionsErrorMessage":"The {mentionsType} you are trying to view has been removed from the community.","videoProcessing":"Video is being processed. Please try again in a few minutes.","bannerTitle":"Video provider requires cookies to play the video. Accept to continue or {url} it directly on the provider's site.","buttonTitle":"Accept","urlText":"watch"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageCustomFields-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageCustomFields-1741125846000","value":{"CustomField.default.label":"Value of {name}"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageReplyButton-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageReplyButton-1741125846000","value":{"repliesCount":"{count}","title":"Reply","title@board:BLOG@message:root":"Comment","title@board:TKB@message:root":"Comment","title@board:IDEA@message:root":"Comment","title@board:OCCASION@message:root":"Comment"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageSolutionList-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageSolutionList-1741125846000","value":{"emptyDescription":"No has been message solutions yet"},"localOverride":false},"CachedAsset:text:en_US-components/messages/AcceptedSolutionButton-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/AcceptedSolutionButton-1741125846000","value":{"accept":"Mark as Solution","accepted":"Marked as Solution","errorHeader":"Error!","errorAdd":"There was an error marking as solution.","errorRemove":"There was an error unmarking as solution.","solved":"Solved","topicAlreadySolvedErrorTitle":"Solution Already Exists","topicAlreadySolvedErrorDesc":"Refresh the browser to view the existing solution"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/common/Pager/PagerLoadMore-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/common/Pager/PagerLoadMore-1741125846000","value":{"loadMore":"Show More"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageView/MessageViewInline-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageView/MessageViewInline-1741125846000","value":{"bylineAuthor":"{bylineAuthor}","bylineBoard":"{bylineBoard}","anonymous":"Anonymous","place":"Place {bylineBoard}","gotoParent":"Go to parent {name}"},"localOverride":false},"Revision:revision:273851_1":{"__typename":"Revision","id":"revision:273851_1","lastEditTime":"2025-01-15T16:17:29.643-08:00"},"Revision:revision:273817_6":{"__typename":"Revision","id":"revision:273817_6","lastEditTime":"2025-01-15T11:16:47.246-08:00"},"ForumReplyMessage:message:273921":{"__typename":"ForumReplyMessage","uid":273921,"id":"message:273921","revisionNum":1,"author":{"__ref":"User:user:128255"},"readOnly":false},"ModerationData:moderation_data:273943":{"__typename":"ModerationData","id":"moderation_data:273943","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":"member"},"AcceptedSolutionMessage:message:273943":{"__typename":"AcceptedSolutionMessage","author":{"__ref":"User:user:84839"},"id":"message:273943","revisionNum":1,"uid":273943,"depth":16,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:testcomplete-questions"},"parent":{"__ref":"ForumReplyMessage:message:273921"},"conversation":{"__ref":"Conversation:conversation:273802"},"subject":"Re: Desktop app keyword test, extract alphanum, edit and convert to number for later use?","moderationData":{"__ref":"ModerationData:moderation_data:273943"},"body":"It is common for new user and advanced user to have severe miss understanding discussing technicalities. Does it mean your problem is solved and this can be marked as solution?
\nThe following project includes a script with two samples for you to run and inspect the how to accomplish, expand the log to see the run details. It uses most of your provided details and catered to different variations and also the max currency length upper limits, extract and open the \"ConvertStringToNumber.mds\" file.
","body@stripHtml({\"removeProcessingText\":true,\"removeSpoilerMarkup\":true,\"removeTocMarkup\":true,\"truncateLength\":200})@stringLength":"203","postTime":"2025-01-19T12:28:42.569-08:00","lastPublishTime":"2025-01-19T12:28:42.569-08:00","images":{"__typename":"AssociatedImageConnection","edges":[],"totalCount":0,"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"attachments":{"__typename":"AttachmentConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"solution":true,"metrics":{"__typename":"MessageMetrics","views":37},"placeholder":false,"originalMessageForPlaceholder":null,"videos":{"__typename":"VideoConnection","edges":[],"totalCount":0,"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"isEscalated":null,"entityType":"FORUM_REPLY","eventPath":"category:TestComplete_forum/community:nwkab66374board:testcomplete-questions/message:273802/message:273943","customFields":[],"readOnly":false,"editFrozen":false,"body@stringLength":"518","rawBody":"It is common for new user and advanced user to have severe miss understanding discussing technicalities. Does it mean your problem is solved and this can be marked as solution?
\nThe following project includes a script with two samples for you to run and inspect the how to accomplish, expand the log to see the run details. It uses most of your provided details and catered to different variations and also the max currency length upper limits, extract and open the \"ConvertStringToNumber.mds\" file.
","kudosSumWeight":0,"repliesCount":3,"timeToRead":1,"currentRevision":{"__ref":"Revision:revision:273943_1"},"latestVersion":null,"visibilityScope":"PUBLIC","messagePolicies":{"__typename":"MessagePolicies","canModerateSpamMessage":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","key":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","args":[]}}}},"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNzM4MzYtV043N1ZS?revision=1\"}":{"__typename":"AssociatedImage","url":"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNzM4MzYtV043N1ZS?revision=1","title":"image.png","associationType":"BODY","width":860,"height":441,"altText":""},"Revision:revision:273836_1":{"__typename":"Revision","id":"revision:273836_1","lastEditTime":"2025-01-15T09:16:09.959-08:00"},"Revision:revision:273863_1":{"__typename":"Revision","id":"revision:273863_1","lastEditTime":"2025-01-16T05:29:55.079-08:00"},"Revision:revision:273837_1":{"__typename":"Revision","id":"revision:273837_1","lastEditTime":"2025-01-15T09:25:23.568-08:00"},"Revision:revision:273813_1":{"__typename":"Revision","id":"revision:273813_1","lastEditTime":"2025-01-15T01:28:12.843-08:00"},"Revision:revision:273823_1":{"__typename":"Revision","id":"revision:273823_1","lastEditTime":"2025-01-15T07:39:10.424-08:00"},"Revision:revision:273822_1":{"__typename":"Revision","id":"revision:273822_1","lastEditTime":"2025-01-15T06:36:23.060-08:00"},"Revision:revision:273834_4":{"__typename":"Revision","id":"revision:273834_4","lastEditTime":"2025-01-15T09:46:22.183-08:00"},"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNzM5MjQtdDBXUHpl?revision=1\"}":{"__typename":"AssociatedImage","url":"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNzM5MjQtdDBXUHpl?revision=1","title":"image.png","associationType":"BODY","width":1294,"height":858,"altText":""},"Revision:revision:273924_1":{"__typename":"Revision","id":"revision:273924_1","lastEditTime":"2025-01-19T04:34:06.813-08:00"},"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNzM4MzktM1QwenMy?revision=1\"}":{"__typename":"AssociatedImage","url":"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNzM4MzktM1QwenMy?revision=1","title":"image.png","associationType":"BODY","width":1125,"height":513,"altText":""},"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNzM4MzktZUpoaGMx?revision=1\"}":{"__typename":"AssociatedImage","url":"https://community.smartbear.com/t5/s/nwkab66374/images/bS0yNzM4MzktZUpoaGMx?revision=1","title":"image.png","associationType":"BODY","width":779,"height":61,"altText":""},"Revision:revision:273839_1":{"__typename":"Revision","id":"revision:273839_1","lastEditTime":"2025-01-15T10:01:43.882-08:00"},"CachedAsset:text:en_US-shared/client/components/users/UserAvatar-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/users/UserAvatar-1741125846000","value":{"altText":"{login}'s avatar","altTextGeneric":"User's avatar"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/ranks/UserRankLabel-1741125846000":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/ranks/UserRankLabel-1741125846000","value":{"altTitle":"Icon for {rankName} rank"},"localOverride":false},"Revision:revision:273943_1":{"__typename":"Revision","id":"revision:273943_1","lastEditTime":"2025-01-19T12:28:42.569-08:00"}}}},"page":"/forums/ForumMessagePage/ForumMessagePage","query":{"boardId":"testcomplete-questions","messageSubject":"desktop-app-keyword-test-extract-alphanum-edit-and-convert-to-number-for-later-u","messageId":"273802"},"buildId":"q_bLpq2mflH0BeZigxpj6","runtimeConfig":{"buildInformationVisible":false,"logLevelApp":"info","logLevelMetrics":"info","openTelemetryClientEnabled":false,"openTelemetryConfigName":"smartbear","openTelemetryServiceVersion":"25.2.0","openTelemetryUniverse":"prod","openTelemetryCollector":"http://localhost:4318","openTelemetryRouteChangeAllowedTime":"5000","apolloDevToolsEnabled":false,"inboxMuteWipFeatureEnabled":false},"isFallback":false,"isExperimentalCompile":false,"dynamicIds":["./components/seo/QAPageSchema/QAPageSchema.tsx","./components/community/Navbar/NavbarWidget.tsx","./components/community/Breadcrumb/BreadcrumbWidget.tsx","./components/messages/TopicWithThreadedReplyListWidget/TopicWithThreadedReplyListWidget.tsx","./components/messages/MessageListForNodeByRecentActivityWidget/MessageListForNodeByRecentActivityWidget.tsx","./components/messages/RelatedContentWidget/RelatedContentWidget.tsx","./components/customComponent/CustomComponent/CustomComponent.tsx","./components/messages/MessageView/MessageViewStandard/MessageViewStandard.tsx","./components/messages/ThreadedReplyList/ThreadedReplyList.tsx","../shared/client/components/common/List/UnstyledList/UnstyledList.tsx","./components/messages/MessageView/MessageView.tsx","../shared/client/components/common/Pager/PagerLoadMore/PagerLoadMore.tsx","./components/messages/MessageView/MessageViewInline/MessageViewInline.tsx","./components/customComponent/CustomComponentContent/TemplateContent.tsx"],"appGip":true,"scriptLoader":[]}