A dialog is diplays " Transaction 254689 has been
successfully completed" How to get the transaction ID from
the message ?

Answers were Sorted based on User's Feedback



A dialog is diplays " Transaction 254689 has been successfully completed" How to get the ..

Answer / lakshmi

Capture the text into a variable by using GETROPROPERTY.

So now

Str="Transaction 254689 has been successfully completed"
Arr=Split(Str," ")
for i=0 to ubound(Arr)

if IsNumeric(Arr(i))=true then
Msgbox "Transaction ID is "& Arr(i)
End if
Next

Is This Answer Correct ?    8 Yes 0 No

A dialog is diplays " Transaction 254689 has been successfully completed" How to get the ..

Answer / tester

Get the message using GetROproperty.then use spit function
suppose
var1="Transaction 254689 has been successfully completed"
spl=split(var1," ")
msgbox spl(1)

Is This Answer Correct ?    7 Yes 1 No

A dialog is diplays " Transaction 254689 has been successfully completed" How to get the ..

Answer / sandeep guttikonda

This task can be done by using the QTP methods:
we are having
1) GetVisibleText
2) GetROProperty
3) GetTOProperty

As it is dialog it will appears during runtime so by using
GetROProperty we can capture the text.

Example:
Captured_Text = Window("window Name").Dialog("Dialog
Name").Object("Object Name").GetROProperty("Property Name")

Hence the entire line will be stored in Captured_Text

Now we need to retrieve the transaction ID:
For this we have Split function in VBScript

Syntax: Split(Expression, Delimeter)

Example: Transaction_ID = Split(Captured_Text, " ")
Here in this case the transaction ID, 254689 will be in
Transaction_ID(1).

Please let me know if you need further info.

Thank.

Regards,
Sandeep Guttikonda.

Is This Answer Correct ?    5 Yes 0 No

A dialog is diplays " Transaction 254689 has been successfully completed" How to get the ..

Answer / pravati

x="Transaction 254689 has been successfully completed"
for i=1 to len(x)
y=mid(x,i,1)
if isnumeric(y) then
z=z & y
end if
next
msgbox z

Is This Answer Correct ?    0 Yes 0 No

A dialog is diplays " Transaction 254689 has been successfully completed" How to get the ..

Answer / mdbasha7862@gmail.com

Try with 'MID Function'

var2="Transaction 254689 has been successfully completed"
midfun=mid(var2,12,6)
msgbox (midfun)

Is This Answer Correct ?    0 Yes 2 No

A dialog is diplays " Transaction 254689 has been successfully completed" How to get the ..

Answer / qtphelper

Use GETRO and obtain the inner text . Since every time the
number is generated after transaction use mid function and
retrieve the number

Is This Answer Correct ?    0 Yes 5 No

Post New Answer

More QTP Interview Questions

How to connect QTP to Testdirector

4 Answers   BirlaSoft, Polaris,


in qtp if we record a object and we record the object using virtual wizard then by which way the object is recognized that means recorded

0 Answers  


Plz someone tell me about user interface testing and backend testing and hw did u use it in ur project.plz give a detail answer i need to explain it to the interviewer. plzzzzzzzzz guys its urgent

2 Answers  


WHAT IS PARAMITARIZATION?

8 Answers  


Explain about the Test Fusion Report of QTP ?

1 Answers   Ordain Solutions,






How to invoke Mozilla from QTP thru VB Script

2 Answers  


How to make "TEST Batches" in manual testing . How it is possible plz explin in detail?

1 Answers  


why use Description programming? what is advantages and disadvantage of this methods?

2 Answers  


Hi, Can we open a test in qtp10 which is saved in qtp 9.2?

0 Answers  


Hi Currently am using Qtp 10.0 Lisenced product.. but when am adding objects to object repository from google page it was identifying as windows objects.. please help me!!!

3 Answers  


What is the difference between two actions?

1 Answers   Wipro,


I have a Webedit object. some text is entered in that object I want to know the font sixe of that text.How could I do this using QTP? This is a requirement for me. I am happy if any one help on this

3 Answers   GE,


Categories