In a web page, one web table is present which is dynamic.
In that table one of the column has links with the same
inner text. write a script so that i need to click the
third link.
Answers were Sorted based on User's Feedback
Answer / tvs ramakrishna chowdary
i am not understanding ur question please post question
once again clearly i can give anser or mail to me
my mail id is-->krishnat.qa@gmail.com
| Is This Answer Correct ? | 0 Yes | 0 No |
Hi All
U can also do this by using GetRowWithCellText method
At First get the row which u got that link in WebTable
Obj=Browser("title:=.*").Page("title:=.*).WebTable("name:= ").GetRowWithCellText("Just give the name which link u wanna click")
Now u got the row no of that particular link in obj
If obj<>0 then
Browser().Page().WebTable().Link("name:= ").click
End If
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / kamepalli
Get the child item from the table by using the below stmt.
a=browser("").page(").webtable("").childitem("weblink",2)
a.click
So by using index we can get the specified link from the webtabel.
| Is This Answer Correct ? | 0 Yes | 1 No |
If an application name is changes frequently i.e while recording it has name "Window1" and then while running its "Windows2" in this case how does QTP handles?
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.
What is the basic concept of quicktest professional?
Is manual Testing replacement of automation testing?Which types of testing we can not do in automation testing but can do in manual testing?
What is the use of Accessibility check point?
How you can decide which type of object repository you have to use?
How to pass a variable in Dos Command using QTP? Eg: Dim path1, path2 path1 = "C:\Test\sample1.doc" path2 = "C:\Test\sample2.doc" How can we pass these path1 and path2 inside the "copy" dos command? I tried like this. this is not working. oShell.run "cmd /K copy" &path1 &path2
can anyone please tell me what are all the shortcut keys used for qtp9.2? Thanks in advance..i expect ur valuable reply that help us our team???
How to make Shared object repository in qtp 9.1 and 9.2?
what is the difference between the modular framework and datadriven frame work
results.xls file is automatically generated while running the script in QTP.But it is showing error to open the file
if there r 10 windows open in QTP write a command to close all 10 windows at a time ?