![]() |
Object Reposoitory and Dialog boxes - 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: VB Scripting/Descriptive Programming (https://www.learnqtp.com/forums/Forum-VB-Scripting-Descriptive-Programming) +--- Thread: Object Reposoitory and Dialog boxes (/Thread-Object-Reposoitory-and-Dialog-boxes) |
Object Reposoitory and Dialog boxes - mv8167 - 05-04-2011 Hi, I seem to be having issues with dialog boxes and my object repository. I can select a link to open a PDF file, then select Save in the popup dialog box, then select Dave again to over write an existing file. QTP fginds and creates the following code: Code: Browser("Wisdom CTE").Page("Wisdom CTE_3").Frame("parent_2").Link("RIG404").Click But all of the lines with Dialog box throws errors thawt not found in OR. But my OR has everything there as required. Does anyone know how to fix this? RE: Object Reposoitory and Dialog boxes - Jay - 05-05-2011 send the screen shots of your OR. make sure that OR is associated with the test script. RE: Object Reposoitory and Dialog boxes - mv8167 - 05-05-2011 Hope this will help. ;-) see screen shots RE: Object Reposoitory and Dialog boxes - Jay - 05-06-2011 Try with the following things: 1. Remove coornidates whereever you find in your script. Like i can see the following line your script: Dialog("File Download_3").Dialog("Save As").Dialog("Save As").Click 229,33 ' insted of this you should right Dialog("File Download_3").Dialog("Save As").Dialog("Save As").Click 2. Provide sync/wait points whenever required 3. Your OR is having redundency of objects. you can try DP like Dialog("nativeclass:=#32770") whenever you find dialog box you can replace that with above one. Winbutton("text:=&Yes") replace winbutton with the above one that means Dialog("File Download_3").Dialog("Save As").WinButton("Yes").Click could be written: dialog("nativeclass:=#32770").dialog("nativeclass:=#32770").Winbutton("text:=&Yes").Click 4. You can use object spy feature of QTP to know the object properties and object hierarchy level. RE: Object Reposoitory and Dialog boxes - mv8167 - 05-06-2011 Sorry Jay... What is DP? I am confussed on what to do with the above code in #3 In #4. did you see my attachment? Everything look like other WinButton's that I compared too. hmmm ;-) This is very weird case. L L RE: Object Reposoitory and Dialog boxes - Jay - 05-09-2011 DP means descriptive programming in which we assign object properties in script or in code line instead of using object repository. You can use "dialog("nativeclass:=#32770").dialog("nativeclass:=#32770").Winbutton("text:=&Yes").Click" line for clicking Yes button even if there is no object present in the object repository. RE: Object Reposoitory and Dialog boxes - mv8167 - 05-09-2011 Jay, Ok, After looking at the OR of the button and dialog box, I see how this works. Thx! Where can I read up on Descriptive Programming? thx Still, this also did not sellect the Save bhutton. Please see my attachment. Argh ;-) |