Why we are going for descriptive programming ? I answered as 'If objects are not present in OR we will go for descriptive Programming'? Is this correct ?
Answers were Sorted based on User's Feedback
Answer / yogi
if objects are dynamic nature..
if object repository not exists..
if we dont want OR..
Is This Answer Correct ? | 4 Yes | 0 No |
if Team Size is big
if objects are dynamic
if it is require to start automation before build release
it is easy to use
it is easy for maintance
it is independent of QTP versions
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / errajeshmangal3@gmail.com
IF No. of same type objects are present on page and seems to be object repository gets loaded . in that cases also we use descripting programming.
Is This Answer Correct ? | 0 Yes | 0 No |
How to "Turn Off" QTP results after running a Script?
what r the executing modes in QTP
How does qtp identify gui object?
What is the Test Object model in QTP?
What is the short cut keys for the following?
what is the use of Browser.sync()
Hi, Can we open a test in qtp10 which is saved in qtp 9.2?
What is LoadRunner?
General Ques : At What State u start Automating ? means at what stage we start writing QTP scripts ?
I have an application running in Linux server. I am reaching the application through emulators like telnet. My operating system at the client side is Windows XP. Using emulator I am connecting the Linux server and working on the application. Can I automate the testing of the software running in Linux server using QTP. In short, does QTP support the applications running in Linux servers.
when we apply the daily build each and every day,the property may change in the application.so that the created script is not reusable in winrunner and qtp.for ex for date field it is taken dtpicker.at another time it is taken some other name.how can i solve it.
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