Interview Questions - 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: Interview Questions (/Thread-Interview-Questions--7881) |
Interview Questions - praveen.sharma - 02-11-2014 1. Write a code for the below scenario There is a value generated during run time which will be used in the next page as an input. 2. Difference between Bitmap checkpoint and Image checkpoint 3. Suppose in web page there are 10 check boxes, how would you identify the second box I know these are the basic questions, but it would be really helpful for everyone if someone can answer these. Thanks RE: Interview Questions - ADITI1992 - 09-08-2015 1. There is a value generated during run time which will be used in the next page as an input. --take input in some variable/or store it in excel sheet and then on next page retrieve that value and use it. 2. Difference between Bitmap checkpoint and Image checkpoint --Image check point check the property value of an image,like html tag,href property etc...and it is supported to only web add- in-environments. Bit map check point check an area of a webpage or an application after capturing and bitmap and it supports all testing environments. 3. Suppose in web page there are 10 check boxes, how would you identify the second box --use index value for 2nd check box. RE: Interview Questions - vinod123 - 11-03-2015 Example for the 3 Question Code: Set Des_Obj = Description.Create RE: Interview Questions - supputuri - 11-04-2015 There are different ways of handling the 3rd question. 1) Xpath Code: Browser().Page(). WebCheckBox("xpath:=(//input[@type='checkbox'])[2]").Highlight 2) Usual DP Code: I) Browser().Page().WebCheckBox("index:=1").Highlight 3) OR :You can add a generic checkbox to OR and then update the index in the runtime using the SetToProperty ("index",2) There are lot of ways doing it, but I have given simple and straight forward methods. Let me know if you need any further details on this. RE: Interview Questions - ahmad3029 - 08-23-2022 Perfect way to address the new community members. Keep sharing valuable information with us. I'll be checking your posts again soon |