Re: [Wtr-general] How do you pass values to Hidden Input fields?

2006-02-07 Thread Zeljko Filipin
Try http://www.fiddlertool.com/fiddler/ Zeljko 2006/2/6, Paul Carvalho [EMAIL PROTECTED]: BTW, does anyone know a tool that will allow me to see what info IEpasses from one page to another? SpySmith is nice for viewing staticinformation on a page, but not for showing me what's being passed

Re: [Wtr-general] How do you pass values to Hidden Input fields?

2006-02-06 Thread Paul Carvalho
I found some of the classes and methods for working with Hiddenfields, but all this programming stuff is a bit too terse for me.(Dammit Jim, I'm a tester not a programmer! ;)) I tried the following: ie.frame(ContextTree).hiddens.length= Returns a value of 8. (matches the number identified via

Re: [Wtr-general] How do you pass values to Hidden Input fields?

2006-02-06 Thread Bret Pettichord
Try ie.frame(ContextTree).text_field(:index, 2).value = wasup?As a general rule, setting the value of a field via value= often works when set fails.Bret On 2/6/06, Paul Carvalho [EMAIL PROTECTED] wrote: I found some of the classes and methods for working with Hiddenfields, but all this programming

[Wtr-general] How do you pass values to Hidden Input fields?

2006-02-03 Thread Paul Carvalho
Hi there, I have encountered an interesting roadblock that I need somehelp with. In the Dot-Net application that I am testing, there is a Context Treein the Left frame that when you click on something, it changes thecontext/display in the MainWindow frame. (i.e. similar to theInteracting with a

Re: [Wtr-general] How do you pass values to Hidden Input fields?

2006-02-03 Thread Bret Pettichord
There are tricks you sometimes (always?) have to use to enter text with hidden text fields. But watir can see hidden fields without any special problem and the error you are getting is because watir can't find it. So you are still have problems with the identification. BretOn 2/3/06, Paul Carvalho