I have 5 no.of Action in my Test. Out off which i should
make 3rd action as my start-up action. How should i make it?
Answer Posted / sreeprasad
You can switch to the "Keyword View" and choose "Toolbars"
under "View" and then choose "Action". This will provide u
with a new combo box where u can choose "Test Flow".
then u can drag and arrange the Actions in which ever order
u want them to get executed.
Repeat ..Automation framework..?
There are five kind of framework for any automation tools.
1).Test Modularity
2).Test Library Architecture
3).Keyword Driven framework
4).DataDriven framework (We generally use this framework
with above mentioned three framework)
5).Record n Playback
-The best one is 'Test Library Architecture'. In this you
can maintain
Application Library
DataBase Library
Error Handling
General Library....etc.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
requirement is for combo box your expected value is str= "Denver.Frankfurt.London.Los Angeles.Paris.Portland.San Francisco.Seattle.Sydney.Zurich" you must get the text in combo box and need to compare them how
Name the different types of recording modes?
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
Explain the N-tire structure(process) for Funds Transfer ( means give N ways to funds Transfer in an Application)
why text area checkpoints cannot used for web applications
Explain types of descriptive programming?
How many types of Automation frameworks are there in UFT? Describe them.
If I give some thousand tests to execute in two days what do you do?
What is optional step in qtp? How you can add optional step in qtp?
Pls can anybody send me the Recent Technical and Interview Questions Which were asked in IBM(QTP)Automation PLZZZZZZZZZ
I need Major Help with a Script I recorded in QTP 9.5. I am recording scripts for a Web-based application(s) I have all the URLs for each application in Excel spreadhsheet so that QTP can pull that particular application from the spreadsheet and run it. The problem is QTP isn't recognizing one particular URL so when I hit run in QTP to run this script it opens the internet Explorer but isn't open the URL I have in the Excel spreadsheet. I've retyped the URL and still QTP won't open this Particular one for some reason. The site its self is working fine but for whatever reason QTP won't open it. How do I resolve this? I have a deadline of next Friday the 7th to complete this task so please help me in any way you can. Thanks in advance
What is the syntax to call one script from another?
How to remove associated function library?
Which advantages helping QTP to hold the position of "Market Leader" for such a long period?
There are 10 rows in the datatable. How can we fetch 2 rows and then skip 3rd row. After that, pick 4th & 5th row and skip 6th row. Please share code