Automation Testing (7699)
Manual Testing (7121)
QA Concepts (917)
Mobile Testing (238)
Test Cases (630)
Test Documents Reporting (59)
Database Testing (90)
Behavior Driven Development (BDD) (103)
Testing AllOther (1138) What was a problem you had in your previous assignment (testing if possible)? How did you resolve it?
2063Define each of the following and explain how each relates to the other: Unit, System, and Integration testing.
1 4335
How to Rcognize the Objects in the Web Page Dialog Using QTP
What is stored in a test frame?
There is very little time to test due to the development team delay how will you handle this situation?
What is the syntax of finding elements by id using css selector?
How do I generate Test Results window using descriptive method ( run time ) after my test execution process? Please have a look of my below code. ========================================================= Dim qtApp Dim qtTest Dim qtResultsOpt Set qtApp = CreateObject("QuickTest.Application") qtApp.Launch qtApp.Visible = True qtApp.Options.Run.CaptureForTestResults = "Always" qtApp.Options.Run.RunMode = "Fast" qtApp.Options.Run.ViewResults = True qtApp.Open "C:\Automation\Example", True Set qtTest = qtApp.Test qtTest.Settings.Run.OnError = "NextStep" Set qtResultsOpt = CreateObject ("QuickTest.RunResultsOptions") qtResultsOpt.ResultsLocation = "C:\Automation\Example\Res1" qtTest.Run qtResultsOpt MsgBox qtTest.LastRunResults.Status qtTest.Close Set qtResultsOpt = Nothing Set qtTest = Nothing Set qtApp = Nothing ========================================================== This code is working fine, but Test Result window is not displaying after execution. Anybody can please help me regading the same. Thanks Akshaya Madali Capgemini India Pvt Ltd 9823213538
Can any one give information on "Content Disposition" in TEST COMPLETE automation tool? mail me to pdamarakonda@smart-bridge.co.in call me to 09849423932
What’s selenese?
Explain the concept of object repository & how qtp recognizes objects?
Actually by using severity you should know which one you need to solve so what is the need of priority?
What are the different types of drivers available in webdriver?
To test a function, what has to write a programmer, which calls the function to be tested and pass test data.
What is software failure?
How to test the cpu usage on mobile devices?
If a button named "CLICK" is recorded in low level recording mode , what will be the values stored for "name" property of that button in object repository ?
i have an external excel datasheet where it only contains 3 rows. after qtp executed the code to import the datasheet, the datatable getrowcount method now gives me a different value, lets say 60,000+ instead of only 3. i did not have any values starting from row 4 of my excel file. why is this happening? this also results to the qtp report to load for a very long time.