Does QTP recognize two diff browser's at a time..?if
possible how..? Is it possible run scripts on Mozilla which
are recorded on IE..?..How..?
Answers were Sorted based on User's Feedback
Answer / yogesh
QTP will recognize n number of browsers at a time need to
handle during scripting. We canont run the scripts on any
other browser which is recorded on IE.many objects will not
recognize. Infect you can not run the script on EI-7 which
is create in IE-6.
Try it you will face Problems.
| Is This Answer Correct ? | 0 Yes | 7 No |
Answer / rico
QTP does only one operation at one time....recognizing
multiple browsers at a time, i don't think its
possible...if it is..please let me know the solution @
merri_rico6@gmail.com
| Is This Answer Correct ? | 4 Yes | 13 No |
How do we count the no of mails in Yahoo Inbox for a specified week?
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
One build is delivered. in that build button name is submit. but in the next buit that name of the button changed as login.are u continue with previous recorded script or u make any changes?
How u perform exception handling in QTp,what is other name for ths
can test automation improve test effectiveness?
what are the different kinds of frameworks in automation?
I have java based application on my computer. Can I install QTP on it? What are system requirements for installing QTP?
Other than using import sheet statement for importing the data from excel sheet, is there any other method that can be used?
What is the framework your company is following. What is the reason. Explain why key word driven frame work is chosen.
How to retrive data from a data table which is in 3rd row,4th column and place it in main script..like retrive name,date from data table..write script for this.
11 Answers Thatavarti Technologies,
any one could you explain the following code with example: intFieldItemsCnt =CInt(GetProperty(Browser ("Browsername").Page("Pagename").Weblist ("weblistname"),"items count")) msgbox intFieldItemsCnt
i have an external excel datasheet where it only contains 3 rows. after qtp executed the code to import the datasheet, the datatable getrowcount method now gives me a different value, lets say 60,000+ instead of only 3. i did not have any values starting from row 4 of my excel file. why is this happening? this also results to the qtp report to load for a very long time.