[Wtr-general] Outlook Access

2006-10-12 Thread Michael Ehrich
hi, i found some pps files about watir and they said outlook access is possible. i didnt find a way or a documentation about outlook access or a module for it. so my question is outlook access supported yet ? and if yes. can someone gimme a link to a docu or some examples ? thx

Re: [Wtr-general] Outlook Access

2006-10-12 Thread Daniel Browne
Hi, Can you give a bit more detail on what exactly you mean by outlook access? To you mean access to an Exchange server? Thanks. Cheers, Daniel. On 12/10/06, Michael Ehrich [EMAIL PROTECTED] wrote: hi, i found some pps files about watir and they said outlook access is possible. i

Re: [Wtr-general] Outlook Access

2006-10-12 Thread Michael Ehrich
hi daniel, no. i mean something like this. my application has sent an email to outlook. i want watir to open outlook, open the mail and get the mail data like from text and so on. best regards michael ehrich -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im

Re: [Wtr-general] Outlook Access

2006-10-12 Thread Zeljko Filipin
On 10/12/06, Michael Ehrich [EMAIL PROTECTED] wrote: no. i mean something like this. my application has sent an email to outlook.i want watir to open outlook, open the mail and get the mail data like fromtext and so on.Hi Michael,You do not have to open Outlook to see your mail. You can read you

Re: [Wtr-general] Outlook Access

2006-10-12 Thread Zeljko Filipin
On 10/12/06, Michael Ehrich [EMAIL PROTECTED] wrote: thx for the help. that would be a solution and what about the contacts and calender functions from outlook J is there a way to control outlook via watir ?You can not control Outlook from Watir, because it can only control

Re: [Wtr-general] Outlook Access

2006-10-12 Thread Chris McMahon
i've tried google first so it was no real help ^^ but i'll try that example maybe it can help meYou might want to investigate the win32::guitest project. It recently got a little more interest after being dormant for a while. http://rubyforge.org/projects/guitest/

Re: [Wtr-general] Outlook Access

2006-10-12 Thread Michael Bolton
I have automated some activities in Outlook successfully with VB. It was painful, mostly because of the completely bizarre object architecture for MS Office products in general and Outlook in particular. Intuitive it ain't; see the recent reference in this forum to the weird approach to

[Wtr-general] IE.GoTo - Can You Set A Timeout or an Idle?

2006-10-12 Thread Norm
I use Watir/Ruby for automating various business tasks, more-o than testing. I have found that the IE.GoTo statement is very unreliable, in that many web-pages for sites I automate seem to never completely load. Essentially, in the status bar you will see something like 1 item remaing... and

Re: [Wtr-general] Intermittent RPC error

2006-10-12 Thread Norm
I determined that it was a timing thing with closing/opening browsers, I added a sleep 1 inbetween and haven't got the error in a couple of days. I think it is just going too fast for the system sometimes... - Posted via Jive

Re: [Wtr-general] IE.GoTo - Can You Set A Timeout or an Idle?

2006-10-12 Thread Norm
It looks like there is an enhancement request for this: http://jira.openqa.org/browse/WTR-46 * IMO this is a critical addition for Watir as pages not loading completely are more common than you would think The original RubyForge answer was: I think you can do this simply by wrapping the call

Re: [Wtr-general] Intermittent RPC error

2006-10-12 Thread Adam Reed
Yep! It's an issue with IE trying to re-open itself too quickly while closing. From what I've seen on the list and tried personally, the sleep statement is the exact solution you're looking for. Adam -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [Wtr-general] IE.GoTo - Can You Set A Timeout or an Idle?

2006-10-12 Thread Chris McMahon
I had another thought, namely that calling goto() inside an explicit timeout is nicer than actually building a timeout value into Watir. There is a timeout value set in the Ruby http-access2 library and I am forever having to remember where the dang value is set and rejigger it on all of my test

Re: [Wtr-general] looping test cases?

2006-10-12 Thread Egil Sorensen
There is one more option - if you don't mind that none of the various assert_ methods cause an abort of the test case. See: Failing a test without aborting it http://forums.openqa.org/thread.jspa?messageID=10417 ~~ Egil -

Re: [Wtr-general] IE.GoTo - Can You Set A Timeout or an Idle?

2006-10-12 Thread Norm
Paul, I searched for all your posts and it did not come up with anything... If you can remember the location that would be great. If not, thanks for your help regardless. - Posted via Jive Forums

Re: [Wtr-general] Frame issues

2006-10-12 Thread Xavier Noria
On Oct 11, 2006, at 6:16 PM, Bret Pettichord wrote: In a context that i no longer quite recall, i submitted a list of known frame issues. Except that list didn't work. That problem has now been fixed. Here is a list of known frame issues in Watir:

Re: [Wtr-general] IE.GoTo - Can You Set A Timeout or an Idle?

2006-10-12 Thread Norm
Thanks for your help guys, I was just able to get that other code working (I think) by modifying the code a little. (Apparently the def timeout wasn't needed?...) require 'watir' ie = Watir::IE.new #def timeout begin timeout(1.0) do |timeout_length|

Re: [Wtr-general] IE.GoTo - Can You Set A Timeout or an Idle?

2006-10-12 Thread Paul Rogers
try this http://rubyforge.org/pipermail/wtr-general/2005-July/002695.html - Original Message - From: Norm [EMAIL PROTECTED] To: wtr-general@rubyforge.org Sent: Thursday, October 12, 2006 2:59 PM Subject: Re: [Wtr-general] IE.GoTo - Can You Set A Timeout or an Idle? Paul, I searched

Re: [Wtr-general] I am having problems with assert -- undefined method `assert'

2006-10-12 Thread Eva
Thanks Bret. I see you replaced the assert logic with if, then, else statements. These seem to work. If you are able to improve the assert logic, please let me know. Thanks. - Posted via Jive Forums