[wtr-general] Re: button.Click_No_Wait only highlights the button, does not click

2009-02-02 Thread Bret Pettichord
http://jira.openqa.org/browse/WTR-279 lokesh.agra...@gmail.com wrote: Hi Bret, Can you please tell me from where I can get the patch? Thanks and Regards, Lokesh Agrawal On Jan 20, 7:53 am, Bret Pettichord b...@pettichord.com wrote: A patch that fixes this problem was recently

[wtr-general] Re: How to identify the li tags

2009-02-02 Thread Angrez Singh
More precisely ie.element_by_xpath(//d...@class='text']/ul/li).text - Angrez On Mon, Feb 2, 2009 at 1:49 PM, al3kc aleks.kiev...@gmail.com wrote: Try this: ie.element_by_xpath(//li).innerText --~--~-~--~~~---~--~~ You received this message because you

[wtr-general] Re: require 'roo' giving Bad file descriptor error

2009-02-02 Thread Thomas Preymesser
On 28 Jan., 14:56, sHiVa krapa.ph...@gmail.com wrote: Hi all, i am trying to use roo for reading Excel file. When i am trying to invoke 'roo' package using require 'roo'  the following  error is displayed. Plase help me in this.-- Thanks Errno::EBADF: Bad file descriptor         from

[wtr-general] Re: require 'roo' giving Bad file descriptor error

2009-02-02 Thread Darin Duphorn
C:\\ruby\\lib\\ruby\\gems\\1.8\\gems\ On 28 Jan., 14:56, sHiVa krapa.ph...@gmail.com wrote: Hi all, i am trying to use roo for reading Excel file. When i am trying to invoke 'roo' package using require 'roo'  the following  error is displayed. Plase help me in this.-- Thanks

[wtr-general] Re: NoMethodError: undefinied method 'goto' for # Watir::IE:0x3294480

2009-02-02 Thread aidy lewis
What is the purpose of the BrowserFactory class? Has not Watir got its own 'factory' in Common Watir? Aidy On 02/02/2009, ab.ostrow...@gmail.com ab.ostrow...@gmail.com wrote: Hi there! def setup @browser = Wayn::BrowserFactory.create @user = Wayn::User.new(@browser)

[wtr-general] Re: NoMethodError: undefinied method 'goto' for # Watir::IE:0x3294480

2009-02-02 Thread aidy lewis
And your class also shows leakage: http://en.wikipedia.org/wiki/Leaky_abstraction Pushing a free flowing language (e.g. English) - in my opinion - is also a bad move. Have a look at this: http://code.google.com/p/cucumber-and-watir/ If anyone wants to use Rspec Cucumber, I will gladly guide

[wtr-general] Re: NoMethodError: undefinied method 'goto' for # Watir::IE:0x3294480

2009-02-02 Thread aidy lewis
I meant to say: Pushing a free flowing language (e.g. English) into objects ... Aidy On 02/02/2009, aidy lewis aidy.le...@googlemail.com wrote: And your class also shows leakage: http://en.wikipedia.org/wiki/Leaky_abstraction Pushing a free flowing language (e.g. English) - in my

[wtr-general] Re: How to identify the li tags

2009-02-02 Thread Bret Pettichord
A = ie.div(:class, /text/).li(:index, 1).text Amit Agarwal wrote: Hi, Please help me in identifying the text written in the li tag of a defined div div class=text nbsp;Please review and make necessary corrections on this page: ul li

[wtr-general] Logging Test::Unit output

2009-02-02 Thread dkurtz
Using the example_logger and am getting my explicit messages fine. What I'm not getting are the error messages that Test::Unit throws for each test case that fails at the end of program execution. You know, the stuff that looks like: 1) Error: test_1(X):

[wtr-general] Re: button.Click_No_Wait only highlights the button, does not click

2009-02-02 Thread lokesh.agra...@gmail.com
Hi, I am facing the same problem. click_no_wait is just highlighting the button, it's not clicking button. I using XP and Watir 1.5.6 Any pointers for the same will be appreciated. Thanks and Regards, Lokesh Agrawal On Dec 12 2008, 7:58 pm, larryni...@gmail.com larryni...@gmail.com wrote:

[wtr-general] NoMethodError: undefinied method 'goto' for # Watir::IE:0x3294480

2009-02-02 Thread ab . ostrowska
Hi there! def setup @browser = Wayn::BrowserFactory.create @user = Wayn::User.new(@browser) @user.login('tomcio', 'haslo') end where class BrowserFactory def BrowserFactory.create browser = Watir::Browser.new begin