[wtr-general] We are moving away from JIRA: please raise all future issues/bugs at Github

2012-02-14 Thread Alister Scott
Here's the link: https://github.com/watir/watir/issues Cheers, Alister Alister Scott Brisbane, Australia Watir Web Master: http://watir.com Blog: http://watirmelon.com LinkedIn: http://www.linkedin.com/in/alisterscott "There are two ways to get enough: One is to continue to accumulate more and m

[wtr-general] Re: watir 3.0.rc2 breaks style.color

2012-02-14 Thread hillary
it does, I just wasn't sure how to validate with that information that it returns. browser.text_field(:id, "text").style == ? -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. watir-general@googlegroups.com http://groups.google.com/group/watir

[wtr-general] Re: download a file to a specific directory in IE 9

2012-02-14 Thread hillary
I'm not sure what's wrong with the file path. It seems to be correct, but windows i just ignoring it. It works manually. I've started re-testing, and now instead of a popup it's that message at the bottom of the screen, is there a way to deal with that with rautomation? -- Before posting, p

[wtr-general] Re: download a file to a specific directory in IE 9

2012-02-14 Thread Anthony Hallett
It may be very simple try adding a '.' in the file path before CSV .. The lack of file extension may be causing windows save some issues ... On Feb 14, 4:45 am, hillary wrote: > In IE I'm trying to set the directory to download an exported file. I'm > using TAZA.  The directory is generated at

[wtr-general] Re: tests are failing with Errno::E14001

2012-02-14 Thread RJ
SOLVED: re-installing a previous version of tortoiseSVN (1.6.16) solved the above 14001 error I cant explain why...but I'm glad that my scripts are running again. Hope this helps anyone running watir-webdriver/ruby-devkit/ruby187 with tortoiseSVN (do not upgrade to 1.7+) -- Before posting, plea

[wtr-general] tests are failing with Errno::E14001

2012-02-14 Thread RJ
what does this mean? No update on watir/ruby, the only thing that was updated were third party apps: notepad++ and tortoiseSVN. Now when I run the same tests (which used to work up until the update), I get the following error message. Errno::E14001: This application has failed to start because

Re: [wtr-general] how to use one default and one customize attribute syntax

2012-02-14 Thread Željko Filipin
On Mon, Feb 13, 2012 at 11:06 AM, Cristina Dumitrescu < cristina.watir.toro...@gmail.com> wrote: > $browser.div(:class, "searchres").div(:class => 'data a' , @target = 'aaa-ldap').span(:class => "r", :text => /aaa-ldap/).flash I do not see where you defined @target variable. Make sure it is symbol

[wtr-general] Re: Watir 3.0 select_list contents

2012-02-14 Thread Jarmo Pertman
You can also use a shorter version: browser.select_list(:name => "model").options.map &:text Jarmo Pertman - IT does really matter - http://itreallymatters.net On Feb 7, 4:22 pm, Željko Filipin wrote: > On Tue, Feb 7, 2012 at 8:10 AM, Trevor wrote: > > assert_equal( ["none","fixed"] , $brow

[wtr-general] Re: watir 3.0.rc2 breaks style.color

2012-02-14 Thread Jarmo Pertman
Hmm, weird that the cssText didn't include the color style... Does that mean there should be some other solution for that? Jarmo Pertman - IT does really matter - http://itreallymatters.net On Feb 10, 7:37 pm, hillary wrote: > that worked. Thanks. -- Before posting, please read http://wat

[wtr-general] Re: Watir-Webdriver Chrome, FF, IE window maximize

2012-02-14 Thread Jarmo Pertman
It's RAutomation::Window#maximize and it would work only under Windows. Also, i'd use window handle instead of title: RAutomation::Window.new(:hwnd => hwnd).minimize RAutomation::Window.new(:hwnd => hwnd).maximize Jarmo Pertman - IT does really matter - http://itreallymatters.net On Feb 10, 1

[wtr-general] Re: I found what the mistake wasRe: how to use one default and one customize attribute syntax

2012-02-14 Thread Abe Heward
It's helpful not to create a new thread when you are posting a reply--especially to your own messages! -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. watir-general@googlegroups.com http://groups.google.com/group/watir-general watir-general+un

[wtr-general] Re: how to use one default and one customize attribute syntax

2012-02-14 Thread Abe Heward
If I understand your question correctly, here's the basics of how to do it in Watir-webdriver (not 100% about Watir, but it's probably the same)... *module Watir* * class Element* *def target* * @how = :ole_object * * return @o.target* *end* * end * *end* That code will then

[wtr-general] Re: download a file to a specific directory in IE 9

2012-02-14 Thread Jarmo Pertman
And what exactly is wrong with that file path so that it default to downloads directory? What if you insert that path manually without any use use of Watir or RAutomation? Does it work then? Jarmo Pertman - IT does really matter - http://itreallymatters.net On Feb 13, 7:45 pm, hillary wrote