How can I access to the following text_field !
I could not get to it by using
"ie.text_field(:name,'miseCode').set('1234')"
Why!
can't Watir access to a text_field without 'type=' like this?
------------------------------------------
<TBODY><TR>
<TD>title</TD>
<TD><INPUT maxLength=4 size=6 value=201 name=miseCode> <INPUT maxLength=7
size=10 value=167 name=kyakCode> <INPUT type=hidden value=201 name=miseC>
<INPUT type=hidden value=167 name=kyakC> </TD></TR></TBODY>
------------------------------------------
Hi Tiffany,
I have tried the Span with it's id but that did not work.
It worked after i have tried the following:
$ie.frame(:id, "frameID").image(:id, /ImageID/).fire_event('onMouseover')
but now when it clicks on the menu it opens up a tiny window inside span where I need to click a button but that does not seem to work properly :(
Weird, I can make it with your code.
Hi Željko,
This worked when I have tried the following:
$ie.frame(:id, "frameID").table(:id, 'tableID').link(:id, /linkID/).click
Thanks.