what is QTP batch testing tool?
Answers were Sorted based on User's Feedback
Answer / kirankumar.b
in qtp tool only one option is avaliable to do batch
testing .(batch run, see in the amd tool in qtp)
batch testing is nothing but run the test suite(a set of
test scripts).
In this just give the path of each script and run the
batch.
| Is This Answer Correct ? | 3 Yes | 0 No |
In QTP for .net application which plug in is used? For Java Application which plug in is used ?
2 Answers AppLabs, Fraze Tech,
Hi, I have a login page. To login in that page I need to have a valid username and password, which is stored in database. I imported that table to my DataTable in QTP (Global sheet). Now I need to write a code in qtp so that I can login only with valid username and data. my condition is : I want to get username and password from inputbox(which i did) and click on login button- which should verify the datatable for username and password and if value is present only then lofin else stop the testing. DataTable contains columns : LoginName and Password Code: Rowcount= DataTable.GetSheet("Global").GetRowCount msgbox "RowCount= " &RowCount,1 CurrentRow= DataTable.SetCurrentRow(1) Do Browser("").Page("").Frame("Frame").WebEdit("ctl10$ct l00$ctl00$UserName$ctl").Set DataTable("LoginName",1) Browser("").Page("").Frame("Frame").WebEdit("ctl10$ct l00$ctl00$Password$ctl").Set DataTable("Password",1) Browser("").Page("").Frame("Frame").Link("Login").Cli ck CurrentRow=CurrentRow+1 Loop Until CurrentRow>Rowcount Can anyone help? Thanks, Priya
how to write vbscript on web applications in qtp. explian with one example?
I wnnt to learn about QTP Automation Framework,please give URL Address to get more information about AFW.
I need Major Help with a Script I recorded in QTP 9.5. I am recording scripts for a Web-based application(s) I have all the URLs for each application in Excel spreadhsheet so that QTP can pull that particular application from the spreadsheet and run it. The problem is QTP isn't recognizing one particular URL so when I hit run in QTP to run this script it opens the internet Explorer but isn't open the URL I have in the Excel spreadsheet. I've retyped the URL and still QTP won't open this Particular one for some reason. The site its self is working fine but for whatever reason QTP won't open it. How do I resolve this? I have a deadline of next Friday the 7th to complete this task so please help me in any way you can. Thanks in advance
wht is the difference betn check point and output value?
Among all the check points what is the most important checkpoint?
using descriptive programming how to close all opend browsers?
Is it possible to run QTP scripts created in IE 6.0 in IE 7.0?
Does QTP have any limitations?Can it work with all kinds of programming languages like java,springs,ajax ,hybernet?Also does it work well with windows 7.What are its other limitations
HOW do we find a datasheet when there are 4 datasheets in data table.this question was asked by covansys interview.
I have a library function , with that function 100 scripts are being called. The library function is changed(something is added) . how do i update all the scripts.