[wtr-general] Re: Why Do Exists? Exceptions Occur?

2009-06-25 Thread wsm
This gets more interesting. The statement: emailframe.frame(:id, 'EmailDefnAction').frame(:id, 'WizardStepFrame') craps out with; Unable to locate a frame with id WizardStepFrame (Watir::Exception::UnknownFrameException) I'm not hard to get along with, I do an exists? loop ahead of the stateme

[wtr-general] Re: How to fetch the Selected Item in a ListBox

2009-06-17 Thread wsm
Thanks everybody for this. Bill Mosteller Eloqua --~--~-~--~~~---~--~~ 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

[wtr-general] Re: 30 Second Pauses When Scripting Hotmail

2009-06-17 Thread wsm
Thanks, figured out how to disable Shockwave Flash on MS-IE and as we suspected, the 30-second pauses are gone. Thanks to all. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Watir General" group. To post to this gr

[wtr-general] Re: 30 Second Pauses When Scripting Hotmail

2009-06-17 Thread wsm
On Jun 17, 8:58 am, "Mark Anderson" wrote: > > Why are you scripting against Hotmail?   > If it is to automate an email task, I would think > that there would be better solutions for scripting against hotmail than > using watir to drive a browser. Excellent answers! How do I disable flash? A

[wtr-general] Re: Why Do Exists? Exceptions Occur?

2009-06-16 Thread wsm
I believe Mark has it right. Crisper script, exists? is on line 65: inboxtbl = $ie.frame(:id, 'UIFrame').table(:class, 'InboxTable') rows = inboxtbl.row_count_excluding_nested_tables() puts TimeStr() + "Back from in-box click, " + rows.to_s + " rows" if inboxtbl.row(:index, (rows + 1).to_s).cel

[wtr-general] Re: select_list().options valid?

2009-06-11 Thread wsm
This just in, from another post: getAllContents does what we hoped options would do. Bill Mosteller Eloqua --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Watir General" group. To post to this group, send email to

[wtr-general] Re: select_list().options valid?

2009-06-11 Thread wsm
Yes, I'm having the same problem: # odd, gets undefined method `options' for # (NoMethodError) # puts TimeStr() + "Advanced dynamic preview " + emailframe.frame(:id, 'EmailDefnAction').frame(:id, 'ContactDetailsFrame').select_list(:id, 'ContentSelect1').options().join("|") --~--~-~--~---