I AM NEW IN QTP,PLZ TELL ME ANY BOOKS FOR QTP,
MY COMPANY IS QTP,SO I LEARN QTP,PLZ ANYBUDY HELP ME
Answers were Sorted based on User's Feedback
Answer / eric mathiesen
The first thing you need to do is write up a storyboard. I
typically use MS-Visio to diagram out the application under
test. Once that's done, consider each element in your
storyboard a sub. Start simple and expand.
For example:
sub LaunchBrowser()
SystemUtil.Run"iexplore","http://192.168.1.1/path","c:\documents
and settings\administrator",""
if browser("internet explorer").page("path").exist then
reporter.reportevent micpass,"step","The browser launched"
else
reporter.reportevent micfail,"step","The browser did not launch"
endsub
sub nav2page()
Browser("Internet Explorer
Enhanced").Page("path").Link("Link").Click
if browser("internet explorer").page("link").exist then
reporter.reportevent micpass,"step","The browser navigated"
else
reporter.reportevent micfail,"step","the browser did not
navigate"
endsub
'actual storyboard starts here
LaunchBrowser
Nav2Page
By doing your test this way, you can reuse subs over and
over and new testers can easily change the path they follow
by just changing the storyboard instead of the actual code &
logic you have spent so much time on.
Hope this Helps,
Eric
| Is This Answer Correct ? | 3 Yes | 6 No |
Answer / rams
Hey why r u fighting with each other instead of answering
the question.Be cool guys.
| Is This Answer Correct ? | 1 Yes | 4 No |
Answer / tanuja
hi my self Tanuja.
Thank to all. Because I also searching for QTP material.
This forum will help me lot.
| Is This Answer Correct ? | 1 Yes | 4 No |
Answer / abhi
I know Indians have an accent. I do too but looking at some
of these posts above, WOW! is all I have to say. This is a
perfect example of bad grammer. I mean the english is
terrible, infact I think I'm going to forward this URL to a
few friends of mine. Might not answer any questions but
it'll at least make them laugh.
Special thanks to: Suresh.chaluvadi, Meenakshi.patil(dont
take tension...lol), Nik Blayer(making him
frustrate...lol), Pavan(How is going) and the rest of the
educated, uneducated fools.
| Is This Answer Correct ? | 3 Yes | 9 No |
Answer / pavan
Hi mite,
How is going ...Don't worry about QTP. Just read the
following web site user guide (100pages)and if you have
some more time also read student guide(1000 pages). It's
Takes around 5 to 8 days then you will get some idea. If
you have any queries send me a mail. I am always feel happy
to help you mite. Good luck to your future.
Take it is easy mite.
http://qualityvista.com/qtp-guides.html
Best Regards,
MR.Pavan K Adapa
Sydney, Australia.
Accountant
pavankumar.adapa@gmail.com
| Is This Answer Correct ? | 4 Yes | 14 No |
Answer / vishal
my best advice to u is go to sunny soft its in adithya
complex, annapurna block, fifth floor,and there one person
named verendra is there ,if ur really intrested just
lisrten to him and practice in the lab u will be perfect in
using quick test.
| Is This Answer Correct ? | 4 Yes | 19 No |
Answer / guest
hey QTP man u know QTP that many times repetition is
sufficient. Say confidently QTP,QTP QTP and rush... lol
You can download the guide from net. Check google no need
to be in that much tense. Good luck dude.
| Is This Answer Correct ? | 9 Yes | 36 No |
Answer / rohit
Dude first improve your english and all caps is so rude man.
And by the way what do you mean by My Company is QTP... lol
But great advise above.
| Is This Answer Correct ? | 25 Yes | 99 No |
I Have web table shown below ----------------------------------------| | orcut | GMAIL | NAUKRI | |----------|---------|-------------------| |HOT MAIL | MONSTER | VISIT FACEBOOK | |----------|---------|-------------------| |SKYPE ACC | IRCTC | GOOGLE | --------------------------------------- Here i have 2 question friends.. 1.i want to chick the link "VISIT FACEBOOK" is there or not if it's there i want to click the link 2.here how to find the web table row or column count ... don't write the excel or data table script here friends ..consider that it's a WEB TABLE
difference between recording methods and recording modes in QTP
Hi im new in Testing..can any one plz re-write this code SystemUtil.Run "C:\Program Files\Mozilla Firefox\firefox.exe","","C:\Program Files\Mozilla Firefox","open" ----using for loop(for i=0;i<=10;i++ )
what is selective recording ? and normal recording?
write the code to reverse a string without using Strrev built in function.
what is testing process with QTP in organization
Take a situation when you are working with QTP, suddenly system has crashed.so you again start the system. My questyion is how can QTP directly opened when the system desktop appears.
VM1 = "Invalid username or password. Please try again. " VM2 = "Email id is required.Password is required. " VM3 = "Email id is an invalid e-mail address.Password is required. " VM4 = "Password is required. " VM5 = "Email id is required. " VM6 = "Email id is an invalid e-mail address. " 'Rowcount of the Local sheet Rowcount = DataTable.GetSheet("Invalid login transactions").GetRowCount 'Valid emailid and Password Emailid = "test@iteamic.com" Password = "Password0" 'For i = 1 to Rowcount 'Parameterised Email_id Browser("Browser").Page ("Page").WebEdit("emailAddress").Set DataTable("Email_id", dtLocalSheet) EID = Browser("Browser").Page ("Page").WebEdit("emailAddress").GetRoProperty("value") 'Parameterised Password Browser("Browser").Page ("Page").WebEdit("password").Set DataTable("Password", dtLocalSheet) PWD = Browser("Browser").Page ("Page").WebEdit("password").GetROProperty("Value") If EID = Emailid And PWD = Password Then Reporter.ReportEvent micPass, "EID & PWD check", "Email id and Password is correct, One iteration of Invalid login attempts is not being executed" Else Browser("Browser").Page("Page").WebButton ("Sign-In").Click 'Output value exported to the local sheet Browser("Browser").Page ("Page_2").Output CheckPoint("Home page_Sign in") 'Storing the output value in a variable(OUTPUT OUTPUT = Datatable.GetSheet ("Invalid login transactions").Getparameter ("Validation_message_signin").value 'comparing the Variable Output and the Validation message for a given input If OUTPUT = VM1 Then Reporter.ReportEvent micPass, "VM1", "Invalid username or password. Please try again. " else if OUTPUT = VM2 Then Reporter.ReportEvent micPass, "VM2", "Email id is required.Password is required. " else if OUTPUT = VM3 Then Reporter.ReportEvent micPass, "VM3", "Email id is an invalid e-mail address.Password is required. " else if OUTPUT = VM4 Then Reporter.ReportEvent micPass, "VM4", "Password is required. " else if OUTPUT = VM5 Then Reporter.ReportEvent micPass, "VM5", "Email id is required. " else if OUTPUT = VM6 Then Reporter.ReportEvent micPass, "VM6", "Email id is an invalid e-mail address. " else Reporter.ReportEvent micFail, "EID & PWD check_FAIL", "Validation message checkpoint failed. The captured v msg is not required" End if End if I am getting syntax error saying "Expected 'End If'" at the last line, Why is this? Kindly explain...
What is the limitation to XML Checkpoints?
How to get line numbers in your editor in expert view?
How do you check ticket cost and ticket number in flight application?
Why to use descriptive programming?