[Wtr-general] How to check presence of link by using begin - until method

2007-03-29 Thread watir-user watir-user
Hi, I need to check presence of a link after some process begin ... ... end until (link appears) This is quite simple, but got struck Thanks in advance, - Here’s a new way to find what you're looking for - Yahoo!

Re: [Wtr-general] How to check presence of link by using begin - until method

2007-03-29 Thread Paul Carvalho
Hello Watir user, I get an error when I try to execute the command ... Perhaps you could include a little more code in your email post? Also, can you please clarify what it is you are trying to do in the web application (i.e. as a user)? What triggers the link to appear? On 29/03/07,

[Wtr-general] How to check presence of link by using begin - until method

2007-03-29 Thread watir-user watir-user
Hi, In a web page after entering a specific value in a text field, some links appears. So i wanted to keep entering a value in a text field unless the links appears on a page. So how do i check the appearance of a link after specific value entered in a text field. I have used following code do

Re: [Wtr-general] How to check presence of link by using begin - until method

2007-03-29 Thread Paul Rogers
There are many ways of making a link 'appear' Does it get added by ajax? Is it in a hidden div ? Does it get created by javascript? depending upon how it gets created you may have to do a different approach. Does the value you enter matter, or is it length of string? the following MAY be waht