[wtr-general] Re: Question about watir and celerity

2010-02-25 Thread Alister Scott
You don't need to require Watir. On Feb 25, 5:12 pm, karim rayani karim.ray...@gmail.com wrote: Clearity is a headless implementation of the Watir API but it runs on the java platform, Karim Rayani On Wed, Feb 24, 2010 at 8:53 PM, Željko Filipin zeljko.fili...@wa-research.ch wrote: On

[wtr-general] Re: Question About Watir

2010-02-18 Thread Jarmo Pertman
Also, if there is some part unique, then you could use multiple parameters as well: browser.text_field(:name = /field_name/, :class = 'css- class', :index = 3).set('my text') which would find third text_field with class='css-class' with name='somethingfield_namesomething' Jarmo On Feb 18, 1:41 

[wtr-general] Re: Question About Watir

2010-02-17 Thread tester86
Hi I came across that example before on automation frameworks. I have already started to implement a framework. But my question was is there any way Watir supports automatically generated ID's? Thanks -- You received this message because you are subscribed to the Google Groups Watir General

[wtr-general] Re: Question About Watir

2010-02-17 Thread Tiffany Fodor
Hi! Is there a part of the id values that is unique and consistent? If so, you could use a regex. For example if your id is 'field_id_XXX' where XXX is a number that is auto-generated: browser.text_field(:id, /field_id/).set('My Text') Are there other attributes that are available (:name,