Answer Posted / krishnateja muppalla
Some times you can make use of Location and Index based on requirement.
| Is This Answer Correct ? | 3 Yes | 5 No |
Post New Answer View All Answers
what is ODC and GDC?
What is text check point and text area check point?
Why to use descriptive programming?
Please guide me release notes of Automation once scripts are completed
hi all can anyone explain how to write the code for finding the mandatory columns in table which are having (red*) (red Astrik)
How to customize qtp?
How qtp recognizes the object?
write a script to verify the image path(src property) of the images which are in web pages.
Hi frnds, does anybody know if there is anything called "thin point" or something in qtp? thanks in advance.
What is parameter in qtp?
Explain different recording modes?
QTP script is not working on other's machine..
What is the architecture of your project? Can any one answer for this question plz........
In qtp is it possible to check broken links of a page?
How can we retrieve the Bug Ids which are open&Reopen in status through QTP scrit?Please find the script which i tried... Dim objBugFactory, objBug Dim BugId Set TDConnection = QCUtil.TDConnection Set objBug = TDConnection.BugFactory If QCUtil.IsConnected then Reporter.ReportEvent 0, "Connected", "Connected to server: " + QCUtil.TDConnection.ServerName + chr (13) +"Project: " + QCUtil.TDConnection.ProjectName + chr (13) + "Domain: " + QCUtil.TDConnection.DomainName Reporter.ReportEvent 0, "Current time on server is","==>" & TDConnection.ServerTime Else Reporter.ReportEvent 1, "Not connected", "Not connected to Quality Center" End If If mybug.Status="Open" Then BugId=mybug.DefectId MsgBox BugId End If 'OR**********************************--------------------- -----********************************** If Bug_Fields("BG_STATUS").Value ="Open" Or "Re Open"Then BugId=Bug_Fields("BG_BUG_ID").Value MsgBox BugId End If