In a Web appl, on a page, there are student names & details
listed.On clicking sort button,details are sorted on
Names.How do u verify htat sorting is done by using QTP?



In a Web appl, on a page, there are student names & details listed.On clicking sort button,det..

Answer / ankur_jain

you can use this function for comparing the values and if
your records are shown in webtable then you can use code
like this
in blank spaces between " " you have to pass your own
names
set hp=browser(" ").page(" ")
rc=browser(" ").page(" ").webtable(" ").rowcount
For i=2 to rc step 1
If i=rc Then
sone=hp.webtable(" ").getcelldata(i,1)
stwo=hp.webtable("html id:=dgList").getcelldata(i,1)
end if
sone=hp.webtable(" ").getcelldata(i,1)
stwo=hp.webtable(" ").getcelldata(i+1,1)
ret= CompareValues(sone, stwo)
'then on the basis of ret value you can verify that
list is sorted or not

'Using this function you can compare two values.
'Return values are based on three data types -Date,Numeric
or Text
'Return 1 if value1>value2 OR -1 if value1<value2, 0 if
value1=value2

Function CompareValues(sOne, sTwo) '--- as variant
On Error Resume Next

Dim im1,im2, iRtrn

if (isNumeric(Trim(sOne)) AND isNumeric(Trim(sTwo)))
then
im1 = CDbl(Trim(sOne))
im2 = CDbl(Trim(sTwo))
else
if (isDate(Trim(sOne)) AND isDate(Trim(sTwo))) then
im1 = CDate(Trim(sOne))
im2 = CDate(Trim(sTwo))
else
im1 = Trim(CSTR(sOne))
im2 = Trim(CSTR(sTwo))
end if
end if

iRtrn=0
If im1 < im2 then
iRtrn = -1
else
if im1 > im2 then
iRtrn = 1
end if
end if
CompareValues = iRtrn

If Err.Number > 0 then
strErrorMsg = "Error occured in function
CompareValues "
strErrorMsg = strErrorMsg & "Parameter
values passed to the function are: - ( " & sOne & ", " &
sTwo & ")"
Call ErrorHandler(strErrorMsg)
End If

End Function

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More QTP Interview Questions

what is the difference between link and hyper link?

1 Answers   Ordain Solutions,


how to write regular expression for Date field?

12 Answers   Google,


What is test fusion report?

2 Answers   CIL,


What is use of Global Sync Timeouts in QTP9.2?

2 Answers  


what could go wrong with test automation?

0 Answers  






how to retrieve the column headers in database using vbscript statement in QTP

1 Answers  


explian qtp frame work and what is the use of it? what is the neceecity of this? explian detail?

2 Answers  


what are all the fileds present in object repository?

0 Answers   Wipro,


in how many ways you perform batchtesting?

2 Answers   Sapient,


How can you pass value one action to another action?

0 Answers  


QTP is used better in which type of application Web based application or desktop application

3 Answers  


What is QTP and the use of QTP in TD?

0 Answers   MaxSolPro,


Categories