Re: [Wtr-general] Send email from Watir script

2007-02-09 Thread Prema Arya
Hi, You don't need a free smtp server if you are having one in your network, it's the same as you are using for your email client like Outlook. If you are sending mail to same network you don't need to login in your mail server, you can directly send mail to anyone using the same mail server

[Wtr-general] href javascript

2007-02-09 Thread Maisonnette
Hello, I got a problem, i don't find how to click on a hypertext link [b]tr thSymbole/th td input type=text name=critere.symbol.symbole maxlength=10 size=10 value= readonly=readonly a href=Javascript:selection(null, 'critere.symbol.symbole','distinct symb,\'(\' || symb ||

Re: [Wtr-general] how ie.div(:name = 'foo', :index = 2).click works?

2007-02-09 Thread Željko Filipin
Charley and Bret, Thank you. If I took a better look at Pickaxe I would save some of your time. I was trying this (and of course it did not work). If I posted this in my original post, maybe my mistake would be clearer to you. div(:name = 'foo', :index = 2) def div(first, second) hash =

Re: [Wtr-general] href javascript

2007-02-09 Thread Maisonnette
i got more information. When i type ie.show_links on irb i got this : [b] irb(main):006:0 ie.show_links index nameid href text/src 1 http://forums.int.sncf.fr/ / http://localhost:7001/Jsp/images/ent_forum_off.gif 2

Re: [Wtr-general] how ie.div(:name = 'foo', :index = 2).click works?

2007-02-09 Thread Željko Filipin
I was browsing true Watir General forum at OpenQA Forums and I wonder how to mark Charley's answer as correct. I am logged in (I can edit my posts). I thought I would see something like mark as correct somewhere, but I can not find it. Or is it something that forum administrator does? -- Zeljko

Re: [Wtr-general] Send email from Watir script

2007-02-09 Thread Paul Rogers
there is also a gmail library for ruby which is really easy to use I think its called gmailer or ruby-gmailer - Original Message - From: Prema Arya To: wtr-general@rubyforge.org Sent: Friday, February 09, 2007 12:56 AM Subject: Re: [Wtr-general] Send email from Watir script

Re: [Wtr-general] Errors installing Watir 1.5.0.934.exe (1-click installer)

2007-02-09 Thread Željko Filipin
Log in as administrator. That could help. -- Zeljko Filipin zeljkofilipin.com ___ Wtr-general mailing list Wtr-general@rubyforge.org http://rubyforge.org/mailman/listinfo/wtr-general

Re: [Wtr-general] how ie.div(:name = 'foo',

2007-02-09 Thread John Lolis
when you make a new thread you have the option of making it a 'question'. If you do that then there will be an icon next to each post to mark them as correct or mostly correct. Think its too late now though :) - Posted via Jive

Re: [Wtr-general] Send email from Watir script

2007-02-09 Thread Richard Conroy
On 2/9/07, Paul Rogers [EMAIL PROTECTED] wrote: there is also a gmail library for ruby which is really easy to use I think its called gmailer or ruby-gmailer In addition to the SMTP Gmailer Ruby options, there is also a Ruby POP3 library (built-in IIRC) and possibly even an IMAP one. In

Re: [Wtr-general] href javascript

2007-02-09 Thread Ravi
I guess this one should work in recent versions of Watir: ie.link(:html,/critere.symbol.symbole/).click - Posted via Jive Forums http://forums.openqa.org/thread.jspa?threadID=6498messageID=18482#18482

Re: [Wtr-general] how ie.div(:name = 'foo',

2007-02-09 Thread Željko Filipin
On 2/9/07, John Lolis [EMAIL PROTECTED] wrote: Think its too late now though :) It is. I tried to edit my original post, but there is no option to make it a message. Thanks for info. -- Zeljko Filipin zeljkofilipin.com ___ Wtr-general mailing list

Re: [Wtr-general] url for link

2007-02-09 Thread Naga Harish Kanegolla
Hi Thanks a lot, It worked. I am using it a lot. But now i got another doubt if the link is div id=ContractDoc dojoType=ContentPane label=Contract style=padding: 10px; overflow:auto; of this kind. This is exactly not a link, its a tab link. so how to click such type of links?? and the other

Re: [Wtr-general] href javascript

2007-02-09 Thread Maisonnette
thank you but it doesn't work ... I use watir-1.4.1 version... and it say : [b]Watir::Exception::MissingWayOfFindingObjectException: :html is an unknown way of finding a link ( critere.symbol.symbole )[/b] - Posted via Jive

Re: [Wtr-general] Problem with Logon popup window

2007-02-09 Thread Charley Baker
If this is a javascript popup you can take a look at the FAQ http://wiki.openqa.org/display/WTR/FAQ for handling javascript popups. Otherwise if this is an IE specific modal dialog, then using watir 1.5.1 you can access the modal_dialog through your ie object. Let us know if either of these two