sid


{ City } bangalore
< Country > india
* Profession * test engineer
User No # 90590
Total Questions Posted # 0
Total Answers Posted # 4

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 1
Users Marked my Answers as Wrong # 1
Questions / { sid }
Questions Answers Category Views Company eMail




Answers / { sid }

Question { 5804 }

how will check the links in multiple pages at a time


Answer

Hi Bfakruddin

Thanks for posting ans. really appreciated. Could you please post code for above question?

Is This Answer Correct ?    0 Yes 0 No

Question { 5716 }

There is a name "AJAY" how do u count no.of. "A" in that
name ?


Answer

Hello All
There is another way of doing this

x="AJAY"
if instr(x,"A")<>0 then
msgbox x
end if

Is This Answer Correct ?    1 Yes 1 No


Question { 6468 }

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.


Answer

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

Question { 3861 }

Could you please any body help me.for example in web table
in the first row and first column there are 3 links like
l1,l2,l3 having indexes 0,1,2 but second time links will
change their order like l2,l3,l1 and indexes also changed
how can we handle this situvation with script....


Answer

Hi Kavitapriyacr

Could you please explain above code with description ?

Is This Answer Correct ?    0 Yes 0 No