take one example and write vbscript on one web application
in qtp?
explian descriptive programe with one example?
Answers were Sorted based on User's Feedback
Answer / shyam.meghansh
Example for VB Script
Function fib(n)
Dim fab(70)
fab(0)=0
fab(1)=1
For j=2 to n
fab(j)=fab(j-1)+ fab(j-2)
Next
For i=0 to n-1
msgbox fab(i)
Next
end function
Next Save this function in .vbs file and call the function
in QTP Action
Example for Descriptive Programme
systemutil.Run("http://www.rediffmail.com")
set BRO =Description.Create()
BRO("title").Value = "Welcome to Rediff.com India"
BRO("name").value ="Welcome to Rediff.com India"
BRO("openedbytestingtool").value= true
Set PG =Description.Create()
PG("title").value="Welcome to Rediff.com India"
PG("url").value="http://www.rediff.com/index.html"
Set UN =Description.Create()
UN("name").value= "login"
UN("Class Name").value ="WebEdit"
UN("type").value= "text"
UN("html tag").value="INPUT"
Set PWD =Description.Create()
PWD("name").value ="passwd"
PWD("Class Name").value="WebEdit"
PWD("type").value="password"
PWD("html tag").value="INPUT"
Set Login =Description.Create()
Login("name").value ="Go"
Login("Class Name").value="WebButton"
Login("type").value="submit"
Login("html tag").value="INPUT"
Login("value").value="GO"
Login("class").value="rmailgobtn"
temp= Browser("Welcome to Rediff.com").Page("Welcome to
Rediff.com").WebElement("ShockwaveFlash1").Exist
If temp= true Then
'Browser("Welcome to Rediff.com").Page("Welcome to
Rediff.com").WebElement("ShockwaveFlash1").
End If
Browser(BRO).Page(PG).WebEdit(UN).Set "testingwithshyam"
Browser(BRO).Page(PG).WebEdit(PWD).Set "shyamshyam"
Browser(BRO).Page(PG).WebButton(Login).Click
..................... Any More Querys mail to
testingwithshyam@gmail.com
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / senthilkumar
Hi
i am senthilkumar now i am working manual tester. i will
test windows application.
how will test application
pls send me small script
| Is This Answer Correct ? | 0 Yes | 1 No |
what is qtp automation framework, what is the purpose of the framework and which folders included in this framework pls tell me with brief description
Can we put more than one action in a single script???? yes or no.....
what is the diffrence bw qtp architectute and qtp framework?
Hi All, I need 5 yrs exp manual and automation testing using QTP sample resume. is there any body having please send me my mail id is bjr@aol.in Tahnks in Advance
1.can we parameterise object repository?how we can do it? 2.there is a name "mallikharjun".i want to get the vowels in it through VBSCRIPT?
why we use check points , In qtp we use the any check points , what r they , when and why
explian qtp frame work and what is the use of it? what is the neceecity of this? explian detail?
How to capture the Check point Value into a variable?
How reliable are the site's Internet connections required to be? And how does that affect backup system or redundant connection requirements and testing?
how can i call function (which has link with excell sheet at a remote location) within another function
How do we handle run-time errors?
what is option explicit?