[wtr-general] Re: Not able to identify object

2008-12-02 Thread Tony

Hi Divya,

ie.textField(:name, 'phone').set("9123456789") ... looks wrong
Should be ie.text_field(:name, 'phone').set("9123456789") or
ie.text_field(:name, 'phone').value = "9123456789"

You could also use value.. not sure on the others.

-Tony
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Watir General" group.
To post to this group, send email to watir-general@googlegroups.com
Before posting, please read the following guidelines: 
http://wiki.openqa.org/display/WTR/Support
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/watir-general
-~--~~~~--~~--~--~---



[wtr-general] Re: Not able to identify object in Watir

2008-10-06 Thread Paul Rogers

its a submit button.
so try ie.button(:name , 'srchIfscCodeBtn')

Paul

On Mon, Oct 6, 2008 at 10:29 PM, vasu <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> I was not able to identify object, I wanted to click on Link: code is
> like this
>
> 
>  value="IFSC Code" />
> 
>
> Please help me out
>
> thanks
> vasu
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Watir General" group.
To post to this group, send email to watir-general@googlegroups.com
Before posting, please read the following guidelines: 
http://wiki.openqa.org/display/WTR/Support
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/watir-general
-~--~~~~--~~--~--~---



[wtr-general] Re: Not able to identify object in Watir

2008-10-06 Thread wesley chen
Please try one of the three:
ie.button(:name,/srchIfscCodeBtn/).click
ie.button(:value,/code/i).click
ie.button(:xpath,"//[EMAIL PROTECTED]'submitLink']").click

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Watir General" group.
To post to this group, send email to watir-general@googlegroups.com
Before posting, please read the following guidelines: 
http://wiki.openqa.org/display/WTR/Support
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/watir-general
-~--~~~~--~~--~--~---