How u call functions in QTP
Answers were Sorted based on User's Feedback
Answer / charan
syntax for function
fun <fun name>(arg1,arg2)
<statements>
end
for example if u want to call mul(3,6)
call mul(3,6)
function mul(a,b)
mul=a*b
end
Is This Answer Correct ? | 23 Yes | 1 No |
Answer / jayalakshmi
Function to calculate the length of characters in a word -
Function countChar(st)/*Vbscript Function
charLength = Length(st)
End Function
Assume above function countChar is written in VBscript, now
you are getting the text from the Application and calling
the Vbscript file and gets the length of the characters in
the word
Dim textValue
textValue= Browser("Browser Name").Page("Page Name").Frame
("mainFrame_5").WebElement("12").GetROProperty("innertext")
executefile "\*.*\countChar(textValue)" /*calling the
Vbscript file
textlength = charLength /*getting the text length
Is This Answer Correct ? | 14 Yes | 12 No |
Answer / hitendra
xyz=checkpal("LIRIL","LIRIL")
Function checkpal( strpal ,outstr )
If strpal =strreverse(outstr ) Then
print strpal &" " & strreverse(outstr )
checkpal="Is Palindrome"
else
checkpal="Is Not Palindrome"
End If
End Function
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / ravinder
first diclare veriable in note pade and save in vbs file
after that go to new qtp program
use the publec ffunction
end function satement go to test resoruses and add
librarey file run the frogram
Is This Answer Correct ? | 3 Yes | 8 No |
hi this is srinivasa(from blr) i complited my B.tech(e.c.e) in 2007 im searching job in s/w testing but idont have freshers resume for s/w testing please send some s/w testing resume for me(fresfers resumes only) advns thnks you
In an interview what r the questions asked in qtp related project? pls any answer this question?
Explain me in deatail about DATADRIVEN framework including scripts ?(realtimes plz)(Chandana)
Hi Friends... By using QTP , can we test .net products...and that product supports different languages.. thanx in advance..
How to capture the Check point Value into a variable?
Brief the process of testing with UFT?
how can we test load time of an page in webtesting?
Write the Test Cases for ATM(Any Time Money)
Dim ExcelSheet Set ExcelSheet = CreateObject("Excel.Application") excelsheet.application.visible = true ExcelSheet.ActiveSheet.Cells(1,1).Value = "This is column A, row 1" ' Save the sheet. ExcelSheet.SaveAs "C:\DOCS\TEST.XLS" ' Close Excel with the Quit method on the Application object. ExcelSheet.Application.Quit after run this script i am getting error"The test cannot continue due to unrecoverable error"
wt is the xtension of the QTP result view file?
What is the difference between qtp and selenium?
How to open any application during Scripting?