List of QTP interview Questions. Please share your answers - Printable Version +- Micro Focus QTP (UFT) Forums (https://www.learnqtp.com/forums) +-- Forum: Micro Focus UFT (earlier known as QTP) (https://www.learnqtp.com/forums/Forum-Micro-Focus-UFT-earlier-known-as-QTP) +--- Forum: UFT / QTP Interview Questions (https://www.learnqtp.com/forums/Forum-UFT-QTP-Interview-Questions) +--- Thread: List of QTP interview Questions. Please share your answers (/Thread-List-of-QTP-interview-Questions-Please-share-your-answers) |
List of QTP interview Questions. Please share your answers - Akhila - 07-06-2013 1. In QTP AOM how to open a file without giving the full path? is there any way to find a file in the system just by giving its name? [You have to write a vb script to find the file]? 2. If you are trying to execute Browser("creationtime:=1")…..but there is only one browser with creationtime=0….what will happen explain in detail? 3..What are the factors you consider while choosing the frameworks? if you want to go for DDF can't we use KDF for that? 4. When you search in google you get no of links in results page. So write a program to click on last link in results page. 5. How do you capture the RAM size of each system you are working. 6.Write a script to click on a link in a WebTable….also once clicked on the link how do you come out of the loop? 6. What are different options if you want to share values between different actions.[without using environment variables] 7. In Cycle 1 your script passed but in Cycle 2 its failed. How you debug? what could be the different reasons for failure? RE: List of QTP interview Questions. Please share your answers - Ankur - 07-06-2013 Please come up with your own answers first. Everybody else will chip-in next. RE: List of QTP interview Questions. Please share your answers - Akhila - 07-06-2013 Here is my approach...please add your comments as well. Thanks 1. In QTP AOM how to open a file without giving the full path? is there any way to find a file in the system just by giving its name? [You have to write a vb script to find the file]? No idea 2. If you are trying to execute Browser("creationtime:=1")…..but there is only one browser with creationtime=0….what will happen explain in detail? When tried its closing the browser with craetiontiem:=0 though I mentioned Creationtime:=1. 3..What are the factors you consider while choosing the frameworks? if you want to go for DDF can't we use KDF for that? - I will check the following factors before choosing a framework Who is the audience going to execute it. Complexity of the application Does the application needs to be tested with different sets of data. No of Test scenarios its needs to cover. 4. When you search in google you get no of links in results page. So write a program to click on last link in results page. First of all I am not getting how to count number of search pages in results page. When I spy on those page numbers links I am not finding unique property. So I am not getting how to approach it. Please give an idea on how to approach it then I will try to write a program. 5. How do you capture the RAM size of each system you are working. Code: Set objWMIService = GetObject("winmgmts:"& "{impersonationLevel=impersonate}!\\"& strComputer & "\root\cimv2") 6.Write a script to click on a link in a WebTable….also once clicked on the link how do you come out of the loop? We have to use flag to come out of the loop when condition met. 7. What are different options if you want to share values between different actions.[without using environment variables] 1. Data tables 8. In Cycle 1 your script passed but in Cycle 2 its failed. How you debug? what could be the different reasons for failure 1. Change in Object Properties 2. New features might be added to the application 3. New changes might not be recognized by QTP RE: List of QTP interview Questions. Please share your answers - Ankur - 07-10-2013 1. This answer is available on the web. Here is a fully recursive example that calls the procedure you posted for all folders and subfolders under the current active folder ... Code: Dim fso 2. That's how it is supposed to work, when there are no other browsers available the only browser that is present defaults to 0 irrespective of its CreationTime property. 3. It depends. 4. Code: set oDesc = Description.Create 6. Use Code: Exit For 7. Datatables, text files, exernal excel files, database (All depends upon your framework) 8. There can be tons of reasons. RE: List of QTP interview Questions. Please share your answers - Akhila - 07-11-2013 Thanks for your information Ankur....they are very helpful for me. Even in Google I could't able to get the correct response for some of them. Need some more information.... 4. When I use the above code.. links count its giving 0, and when I spy on google results link it showing "outerhtml" property value as "<a class="fl" href="/search?q .*" Even using that I am neighter getting the correct count of links nor its clicking on last link. Where I am making the mistake? 8. Can you please list at least 5 reasons? so that I can get some idea... Thanks!! |