This is Ajay i have few douts if anybody know pls give me
reply.
1. i have opend 2 gmails i am working with 1 gmail i want
to close other gmail by usig script.
2.i have 10 links in a page all of them have same
properties& names i want to click on 5link by using script.
3.i have one combobox in that i want to see all the
citynames in the combobox and i have to check weather
hyderabad is present or not.
4. size of objectrepository.
5.what r problems we get during writing the script.
6.is it possible to compare to excel sheets in qtp if
possible wht is the script.
7.example for lowlevelrecording
Answers were Sorted based on User's Feedback
1) i have opend 2 gmails i am working with 1 gmail i want
to close other gmail by usig script.
Ans: Use index property to uniquely indentify the Browser.
In QTP, for any object, Index starts from Zero. If only one
browser opened, Index value is Zero. For the second
browser, index value will be 1 and so on.
The below code will close the second Gmail brower if it two
or more Gmail Pages are opened. Otherwise It won't close.
If (Browser("title:=Gmail: Email from
Google","index:=1").Exist) Then
Browser("index:=1").Close
End If
If u want to close any broswer, use only index property in
Browser object
2) i have 10 links in a page all of them have same
properties& names i want to click on 5link by using script.
Ans: Use index property in descriptive programming so that
u can perform click action on 5th link.
i.e
For example, ABCD is the name of the link and page contains
10 links with the same name ABCD and you want to click on
5th, this case the below code work. Index starts from Zero.
So fifth link contains the index value 4.
Browser("title:=Gmail: Email from Google").Page
("name:=Gmail: Email from Google").Link
("name:=ABCD", "index:=4").Click
3).i have one combobox in that i want to see all the
citynames in the combobox and i have to check weather
hyderabad is present or not.
Ans: The below code that will verify whether the Item exist
in the combobox or not. i.e. the given city Hyderabad exist
in the CityList combobox or not.
CityName = "Hyderabad"
Result = 0
all_items = Browser("Cities").Page("Cities").WebList
("CityList").GetROProperty("all items")
For Each aitem In all_items
If aitem = CityName Then
Reporter.ReportEvent micPass "City is Found
in the List", "Passed"
Result = 1
Exit For
End If
Next
If Result = 0 Then
Reporter.ReportEvent micPass "City is Found in the
List", "Passed"
End If
4) size of objectrepository
Ans: The Size of the Object Repository might be the size of
the .tsr file in your script.
5) what r problems we get during writing the script
Ans: In general, you can get the following probles while
preparing the script
1. Sometimes you may not able to find/recognize the unique
property value of the object.
2. Synchromnization: this is one of the major issue while
preparing and executing the script.
3. If you have good Automation framework, then only it is
easier to prepare the scripts
4. It depends on your logic where you are going to
implement in the script
6) is it possible to compare to excel sheets in qtp if
possible wht is the script.
Ans: It is possible to verify two Excel sheets in QTP.
I can explain the Steps to prepare the script.
Step1: Import the first Excel sheet to Gloalsheet, Second
excel sheet into Local sheet
Step2: Get the rowcount of two Globalsheet and localsheet
Step3: Compare the rowcounts and columncounts of two sheets
if those are equal, verify each value of the cell.
If any one combination failed(verifying cell value,
Mention that two excel sheets are different
else
Two excel sheets are equal.
Else
Mention that two excel sheets are different
7) example for lowlevelrecording
Ans: I didnot work on Lowlevel recording, so I don't have
an idea.
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / manas jena
litle bit modify of answer if u ur using browser object
then creation time property should user
1. 2 gmail opened
ans
Browser("title:=.*gmail.*" "creationtime:=1" ).close
The first opened browser creation time will be 0,next
opened browser creation time is 1.
See ordinal identifier in QTP
3. ans:
you can use
Index or location property
Index work on left to right and location works top to buttom
example
Text Box 1: Text Box 2:
Text Box 3: Text Box 4:
Text Box 1: location=0
Text Box 2: location=2
Text Box 3: location=1
Text Box 4: location=3
'Text Box 1
Browser("title:=.*Descriptive.*").Page
("micclass:=Page").WebEdit
("name:=dpTest","location:=0").Set "1"
'Text Box 3
Browser("title:=.*Descriptive.*").Page
("micclass:=Page").WebEdit
("name:=dpTest","location:=1").Set "2"
'Text Box 2
Browser("title:=.*Descriptive.*").Page
("micclass:=Page").WebEdit
("name:=dpTest","location:=2").Set "3"
'Text Box 4
Browser("title:=.*Descriptive.*").Page
("micclass:=Page").WebEdit
("name:=dpTest","location:=3").Set "4"
--------------------------------------------------
Text Box 1: index=0
Text Box 2: index=1
Text Box 3: index=2
Text Box 4: index=3
'Text Box 1
Browser("title:=.*Descriptive.*").Page
("micclass:=Page").WebEdit
("name:=dpTest", "index:=0").Set "1"
'Text Box 2
Browser("title:=.*Descriptive.*").Page
("micclass:=Page").WebEdit
("name:=dpTest", "index:=1").Set "2"
'Text Box 3
Browser("title:=.*Descriptive.*").Page
("micclass:=Page").WebEdit
("name:=dpTest", "index:=2").Set "3"
'Text Box 4
Browser("title:=.*Descriptive.*").Page
("micclass:=Page").WebEdit
("name:=dpTest", "index:=3").Set "4"
| Is This Answer Correct ? | 1 Yes | 0 No |
Small change in Answer for third question
3).i have one combobox in that i want to see all the
citynames in the combobox and i have to check weather
hyderabad is present or not.
Ans: The below code that will verify whether the Item exist
in the combobox or not. i.e. the given city Hyderabad exist
in the CityList combobox or not.
CityName = "Hyderabad"
Result = 0
all_items = Browser("Cities").Page("Cities").WebList
("CityList").GetROProperty("all items")
For Each aitem In all_items
If aitem = CityName Then
Reporter.ReportEvent micPass, "City is
Found
in the List", "Passed"
Result = 1
Exit For
End If
Next
If Result = 0 Then
Reporter.ReportEvent micFail, "City is not Found in
the
List", "Failed"
End If
| Is This Answer Correct ? | 0 Yes | 0 No |
I have a drop down box to show selected number of records in result page.It contains 4 items like 10, 25,50 and 100. when i was recordes script for seelcting each item and checking selecting number of records in the result page( it is in the same page in the table format)it is generating a new page with same controls( objects) in the OR. how to avaid these in OR? is it possible to write DP for only these lines?, remaining(remaingin lines of code) objects i want use from OR only. One more problemis if change ( add /remove properties of an OBJECT in OR , my ( recorded )application is not running.
How to customize checkpoints with parameters?
how to handle the textboxes where in it should take the sum like ex:: while posting a question in this site it will for what is the result of 6+3=__ where in we have to enter manually 9 and click on submit... but how to handle these cases in qtp.. can someone plz help me out wid dis...
If an application name is changes frequently i.e while recording it has name, in this case how does QTP handles?
what type of run time errors you get while you ar edoing rpg program?
How can i open a file in Textpad and replace a string with another using QTP
Synchronozation types in QTP
Define Error Pane of UFT?
Hi Friends, Can any one answer this question? 17) What method is used to retrieve the number of columns in the query results? A. Fields.Count B. Fields.Item(EOF) C. Fields.Count(BOF) D. Fields.Count.Value
how can i pass a "automation script" as a parameter in a function give me need full suggestion thank inadvance
Can i run the qtp, without OBJECT REPOSTIRY...
How do you check ticket cost and ticket number in flight application?