Hi, i am rani ,i am putting 1+years of fake exp ,so pls
anyone explain how i get project (in real time) ? how it is
tested
ex: in banking ,test the number of textboxes in one window
Answers were Sorted based on User's Feedback
Answer / nani
Hi,
By using this script we Count the nuber of text boxes in
the window:
Set oDesc = Description.Create()
oDesc("micclass").Value = "WebEdit"
Set Lists = Browser("Welcome: Mercury Tours").Page("Find a
Flight: Mercury").ChildObjects(oDesc)
NumberOftxtboxes = Lists.Count()
msgbox NumberOftxtboxes
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / prasanth
Hi Rani,
First i suggest you not to reveal that you are fake exp.
First you learn all the concepts in the QTP; practice them
and gain confidence.
You can learn about the project's from any institute near
by and contact any real time people working on the tool so
that they can share their experiences.
Try working on the web applications like Yahoo,gtalk or any
other in the internet and try automation them so that you
can gain knowledge.
Hope this clarifies you.
kumar.rnv@gmail.com
Broadridge.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / shyam.meghansh
Hi rani
Let me tell u one thing.... do not tell any one that u r
putting FAKE Exp. ok..............
Testing Doesn't meen Textboxes.... testing means
manythings.............. u have many more.....
If u want a realtime project u can test the gmail,
mnsmessanger, yahoo mesanger, rediffmailetc etc....... so
that u can get to know wht to be tested and wht not be to
tested...........................
any forther quires plz feel free to ask
testingwithshyam@gmail.com
| Is This Answer Correct ? | 1 Yes | 1 No |
When you open QTP, how many sheets you can see?
Hello Everyone, I have a problem. QTP is capturing no action on a particular page in the application that I am trying to automate. But on the same side its working fine on other pages of the same application. Can someone please help me understand the reason behind this inconsistency.
Hai Guys, can anybody show me how to write automaed test cases using VB scprit(examples)...i had an interviw soon...please guyz send as quickly as possible
Hi All, we are using QTP Automation Scripts to test SAP. I recorded QTP Automation Scripts in English-based SAP GUI. Now we have to test a French-based SAP sytem and use the same scripts. The QTP scripts are failing when executed on the French-based SAP System due to Object Recognition Issues. What can we do? Do I re-record the scripts in the French-based SAP system?
Hi, I have 2 dropdown listboxes called region and city/area. It needs to select one region(Santa Clara) and one city/Area (Sunnyvale).So I put this in the for loop and I am storing the Items in the variable called itemname. The regions value will get changed,so I used reg expression for this regions. This is my code Browser("MLSListings.com").Page("MLSListings.com").Link("» County/Area").Click Browser("MLSListings.com").Page("MLSListings.com").WebList ("regions").Check CheckPoint("regions") ListSize=Browser("MLSListings.com").Page ("MLSListings.com").WebList("regions").GetTOProperty("items count") For i = 1 To ListSize-1 Itemname =Browser("MLSListings.com").Page ("MLSListings.com").WebList("regions").GetItem(i+1) Browser("MLSListings.com").Page("MLSListings.com").WebList ("regions").Select Itemname ................. If I run the script,I am getting the following error, Cannot identify the specified item of the regions object. Confirm that the specified item is included in the object's item collection. Any Help? Thank you, Uma
How can we test an XML using QTP? I have been to an interview, where they have given me an XML which had 15 values and they have given those values on a separate page. They asked me to write a QTP script to check the XML is having those particular 15 values.
Explain in brief about the QTP Automation Object Model.
How to enable the text check point in qtp? By default it is disables
1 Answers Sify, ssinformatics,
How will you test a stapler?
What exactly is the difference among all the three recording modes.
I need to obtain the parent of an object programatically, so if I have: winButton("aButton") I need to obtain the parent part: window("Window1").Dialog("Dialog1") so I can programatically create a string of the full name of the object to call it with an execute statement in QTP I would like to use something like: part[1] = "window(""Window1"")" part[2] = "dialog(""Dialog1"")" so I can do: exeLine = part[1]&"."&part[2]&"."&"winButton(""aButton"")" Execute exeLine Apart from keeping a record of the window/dialog hierarchy is there a parent or path function/ command Thanks Adrian
Currently i have designed my script based on the test cases present in Quality Center. I want to run my script from quality center. Can anyone help me to get the code which will connect QTP with Quality Center and execute the test cases?