[Wtr-general] Job Opportunity: Quality Assurance Engineer in Los Angeles

2006-05-18 Thread Sean Gallagher
at $6 billion in 2005. Ticketmaster is headquartered in West Hollywood, California and is an operating business of IAC/InterActiveCorp (NASDAQ: IACI). -- Sean Gallagher Ticketmaster Quality Assurance, CRM Tools [EMAIL PROTECTED] ___ Wtr-general mailing

Re: [Wtr-general] The Watir Installer

2006-05-01 Thread Sean Gallagher
+1 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bret Pettichord Sent: Saturday, April 29, 2006 1:44 PM To: wtr-general@rubyforge.org Subject: [Wtr-general] The Watir Installer This is a proposal for packaging Watir 1.5. Watir will be

Re: [Wtr-general] Need Help redirecting the Test Unit output

2006-04-25 Thread Sean Gallagher
Hi Paul, Try tee on the command line when you kick off your script. Like so: C:\ ruby iostring_test.rb | tee results.out tee.exe is included with GNU utilities for Win32, available here: http://unxutils.sourceforge.net/ Sean -Original Message- From: [EMAIL PROTECTED]

Re: [Wtr-general] Using Data from CSV or XLS

2006-04-11 Thread Sean Gallagher
Here is some code that I am experimenting with for filling in forms using YAML. The data in MyDataFile.yml drives which fields, select lists, etc. are set and the values for each. The names used in MyDataFile.yml are the element ids. Different data comes from using different data files. Comments

Re: [Wtr-general] Files as argument when running a suite

2006-04-04 Thread Sean Gallagher
Deepa, Check out YAML --it's already included with Ruby. (and works really well!) More info here http://yaml4r.sourceforge.net/ including a good cookbook. http://yaml4r.sourceforge.net/cookbook/ I am using YAML to solve a similar problem. Good luck! Sean -- http://testmethods.net/

Re: [Wtr-general] Where should we discuss bugs in Watir 1.5?

2006-03-30 Thread Sean Gallagher
+1 to create separate mailing lists for watir-users and watir-dev (and maybe another, watir-announce, for release information, etc). I also think that wet, recorders, etc should be discussed on other mailing lists. Sean -- http://testmethods.net/ -Original Message- From: [EMAIL

Re: [Wtr-general] Send results to console and text file

2006-03-28 Thread Sean Gallagher
Using cygwin, this will give you what you want: function1.rb | tee results.txt You can also use tee.exe from the Windows command line. Check out: GNU utilities for Win32 http://unxutils.sourceforge.net/ Simply unzip and add usr\local\wbin to your path. Sean -- http://testmethods.net/

Re: [Wtr-general] Need advice for splitting large scripts into sm aller ones

2006-03-02 Thread Sean Gallagher
set_test_defaults is called from each test method that needs access to the data. As well, each test method calls a log_test method (in common.rb) to spit out some useful information as the tests execute. Answers to your questions are inline, below. Hope this helps! Sean -- Sean Gallagher CRM

Re: [Wtr-general] ruby ide

2005-12-19 Thread Sean Gallagher
I use gvim + command prompt. http://www.vim.org/download.php There is also Mondrian Ruby IDE, if you prefer an IDE. http://www.mondrian-ide.com/ -sean -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Zeljko Filipin Sent: Monday, December 19, 2005

Re: [Wtr-general] Assert Question

2005-12-12 Thread Sean Gallagher
When using this assert in an if statement, the second half of the condition is skipped if the first half is false. Basically, the assert returns the error and prints it, but the else part of the condition is not executed. Any ideas? if assert(ie.contains_text(Test verification

Re: [Wtr-general] OT: silly format question: get Ruby to ignore l ine ends for long lines?

2005-11-28 Thread Sean Gallagher
What about using a here document? irb(main):013:0 foo=HERE irb(main):014:0 select * irb(main):015:0 from foo irb(main):016:0 where someval='bar' irb(main):017:0 HERE = select *\nfrom foo\nwhere someval='bar'\n irb(main):018:0 print(foo) select * from foo where someval='bar' = nil irb(main):019:0

Re: [Wtr-general] getting the exception value

2005-10-25 Thread Sean Gallagher
Check out http-access2 http://raa.ruby-lang.org/project/http-access2/ Description: http-access2 gives something like the functionality of libwww-perl (LWP) in Ruby. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Pierre Garigue Sent: Tuesday,

Re: [Wtr-general] ruby threads

2005-10-21 Thread Sean Gallagher
Is anyone running watir from cygwin? Does it work? Are there issues? -sean -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bret Pettichord Sent: Friday, October 21, 2005 12:23 PM To: wtr-general@rubyforge.org Subject: [Wtr-general] ruby threads By

[Wtr-general] FlyTreeView control - help!

2005-10-10 Thread Sean Gallagher
I am testing an ASP.NET app that uses a FlyTreeView control (http://www.9rays.net/cgi-bin/components.cgi?act=1cid=20). The HTML includes elements in node tags, which are links to reports in the AUT: NODE Key=quot;1quot; Text=quot;Summary Reportsquot; ToolTip=quot;Summary Reportsquot;

Re: [Wtr-general] How do I save a web page from a test run (attem pt using Win32API)?

2005-09-30 Thread Sean Gallagher
If all you want is the html, why not just get the html using watir? pagehtml = ie.html -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Joe Yakich Sent: Friday, September 30, 2005 1:54 PM To: wtr-general@rubyforge.org Subject: [Wtr-general] How do I save

Re: [Wtr-general] Watir and Ajax

2005-09-27 Thread Sean Gallagher
is changing the content ... it doesn't care. That's what is so nice about WATiR vs other tools like HTTPUnit that would have to emulate all of the functionality that IE takes care of for us... ... I hope that helps answer your question. j. On 9/26/05, Sean Gallagher [EMAIL PROTECTED] wrote: Has anyone

Re: [Wtr-general] Watir and Ajax

2005-09-27 Thread Sean Gallagher
/ ) ) end end --SCRIPT-- ... I hope that helps... j. On 9/27/05, Sean Gallagher [EMAIL PROTECTED] wrote: No, that does not answer my question. I am looking to test updates to the page from the Ajax engine. In the case of instant search, I need to be able

[Wtr-general] 1.4.1 gem version, revision

2005-09-12 Thread Sean Gallagher
The watir 1.4.1 gem is a different version and revision than watir in the 1.4.1 installer. I am troubleshooting a watir gem issue and am curious why/how this happened. Can anyone comment? gem: irb(main):001:0 require 'rubygems' = true irb(main):002:0 require_gem 'watir' = true irb(main):003:0

[Wtr-general] FW: 1.4.1 gem version, revision

2005-09-12 Thread Sean Gallagher
my mistake. i re-ran the new installer and both gem and installer and the same. seems like i ran install.rb from the wrong dir. :-( -Original Message- From: Sean Gallagher Sent: Monday, September 12, 2005 10:35 AM To: 'wtr-general@rubyforge.org' Subject: 1.4.1 gem version, revision

RE: [Wtr-general] new installers

2005-09-01 Thread Sean Gallagher
-1 old installer +1 gem gem install watir Easy peasy. I have used cvs co, old installer, new installer and the gem. The gem installation was simple. I especially like the fact that it only installs watir. The only issue was having to (manually) remove watir from lib\ruby\site_ruby\1.8 before

RE: [Wtr-general] new installers

2005-09-01 Thread Sean Gallagher
-1 additional dependency -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bret Pettichord Sent: Wednesday, August 31, 2005 10:49 PM To: wtr-general@rubyforge.org Subject: Re: [Wtr-general] new installers I'm thinking about using rake for the cli installer

[Wtr-general] Cygwin Ruby and Watir

2005-08-31 Thread Sean Gallagher
Is anyone running Watir automation from Cygwin? If so, any advice, issues, etc? Thanks. -sean ___ Wtr-general mailing list Wtr-general@rubyforge.org http://rubyforge.org/mailman/listinfo/wtr-general

RE: [Wtr-general] Re: Wtr-general Digest, Vol 21, Issue 87

2005-08-30 Thread Sean Gallagher
# you were trying to use an undefined local variable in your test method # here is an example that uses an instance variable for IE # the test runs, but fails -- I don't know what you are looking for :-) require 'watir' require 'test/unit' require 'test/unit/ui/console/testrunner' require

RE: [Wtr-general] Writing values to a file

2005-08-25 Thread Sean Gallagher
f = File.new(testfile.txt, a) f.puts t1.to_s f.puts t3.to_s -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tonny Brown Sent: Thursday, August 25, 2005 5:01 AM To: wtr-general@rubyforge.org Subject: [Wtr-general] Writing values to a file Hi there, I

Re: [Wtr-general] radio button support

2005-07-29 Thread Sean Gallagher
Check your HTML. The first line is missing a closing ''. On 7/29/05, Shao Kang Tat [EMAIL PROTECTED] wrote: Hey, I got the latest version of watir from the tarball (thanks Zeljko). I currently have a page that has 3 radio buttons..here's the html: input type=radio name=AssociateWith