Hi Friends,will any body tell to Me for which Auomation
Tool their is great Requirement inht eMarket Eithr the QTP
or WINRUNNER and for what reason and how long it is going
to remain and wat the Scope for the automation Testing In
the Future Please tll to Me In Details Ok .
Answer Posted / ritesh
Truly speaking, Winrunner is getting outdated and fading
and the scripting language is TSL for Winrunner Vs VBScript
which is key language that people are using for QTP ( you
can use other Scripting / Programming languages too with
QTP).
Undoubtedly QTP is better tool than Winrunner. QTP is there
to stay for long time.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
what is clean sweep?
can any body clearly explain about keyword driven framework .give me the explanation for files what ever you use in this frame work?
If the weblist is identified as webelement,and by clicking on webelement if the values are displayed,and if the values the values also identified as webelement.then how to fetch the values through script?
Can any one say what exact diff between test->parameters, action properties-> parameters. after defining the parameters in test->settings, how can we access those parameters.(i know how to use action prop parameters)
Do you know SQL? I know SQL but i don't have any experience...that's it..No more questions ...simply he said " you can leave for the day" ...guys prepare SQL Quires before attending interview in bank of america...
Can we run test with out adding object in object repository? How it is possible?
what is the frame work in J-meter?
what is the difference between modular framework & datadriven framework
wt is the use of multiple questions in QTP
What is an optional step in qtp ?
how do you parameterize search button from the website? the page is a single winobject and i have made a virtual object button of search button but search box can't be converted into a winedit and if we try to convert it into winedit the value we enter in a searchbox appears as numbers in the script so we arent able to parameterize.help!!!
What is the short cut keys for the following?
Explain the views in the QTP GUI?
Can anyone pls tell me in realtime (descriptive programming) how will the properties of the object be given to the test team. R they given in an excel sheet and is the same sheet also given to the development team and by whom is this given? Thanks a lot.
I am facing an issue of object identification with the dropdown element of DHTML grid. When I tried to recognize these different dropdown objects, QTP identifies only one object for all the dropdowns. Hence, selection of different data from different dropdowns list is an issue. To overcome this problem, i have used Descriptive Programming technique by creating different object descriptions which have all the other properties same but differ only in one property i.e. ‘X’ location of the element on the screen. Hence, i have created distinct object descriptions that would allow us to select values in different dropdowns. The code is given below. But still I am unable to identify distinct dropdown objects. ‘Object Description for Dropdown Cell Status Set objCellStatus = Description.Create objCellStatus("micclass").value = "WebList" objCellStatus("name").value = "select" objCellStatus("x").value = 219 ------ ‘X’ Axis value for cell status drop down ‘Object Description for Dropdown Sub Segment Set objSubSegment = Description.Create objSubSegment("micclass").value = "WebList" objSubSegment("name").value = "select" objSubSegment("x").value = "319" ------ ‘X’ Axis value for sub segment drop down Please help... This is specific to DTML grid(Drop down object)