hai all.iam chandu..please let me know how to test a link
in QTP when it is changing at run time..and what property
we should take while we r using descriptive programming for
a link..
Answers were Sorted based on User's Feedback
Answer / sangee
U can get the value by using Object Spy and get the properties
which ever u want.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / chaitanyakumar.chivukula
we can test the frequently changed object like links or
buttons...etc with the help of DP...
we can test dynamicly changed links with help of DP with
Reg.Exp or creation of time.
Set link = Description.Create()
link("innertext").Value = "xxx"
link("innertext").Reg.Exp = "xxx"
Browser(Broswer).page(Page).weblink(link).click
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / pravati
set obj=Description.create()
obj("micclass").value="Link"
set linkobj=Browser("micclass:=Browser").page("micclass:=page").childobjects(obj)
for i=0 to linkobj.count -1
x=linkobj(i).Getroproperty("name")
if trim(x)="forgotten password?" then
linkobj(i).click
exit for
end if
next
| Is This Answer Correct ? | 0 Yes | 0 No |
Mention what is byref and byval parameters in vbscript?
When importing an excel file that has several columns each with different number of rows into QTP's Global datatable, how can you count the number of rows in a particular column?
3 Answers Logica CMG, McGraw Hill,
i created script for login in QTP,i parametirized that using global sheet,problem i am facing is first i want to login with first values provided in excelsheet and want to perform some operation,second time if call same action it should login with second values in excelsheet
Write a program using Java Script / VBscipt that checks if two matrices have identical values in all the elements
What are class events?
Hi I don't have any idea on VBscript. can any one point me to a good web site to learn VBscript. Regards lina
Explain the extension .hta?
In html file what is an ideal position to include vbscript?
How to get the background color of a weblist?
Which object is used to work with the database in the vbscript language and what statement is used to create this object?
Which in-built functions are used to convert the specified expression in the form of date and string in the vbscript language?
Write VB script to convert from feet to inches(hint 1feet=12 inches)