Re: [wtr-general] Parallel testing

2012-11-21 Thread Ry
Yup, we're using webdriver. Zeljko, are you aware of any site providing documentation to set up and/or using watir-webdriver with selenium grid? Thanks again. On Monday, November 19, 2012 2:35:31 PM UTC-8, Željko Filipin wrote: On Mon, Nov 19, 2012 at 11:29 PM, Ry cross...@gmail.com

Re: [wtr-general] Parallel testing

2012-11-21 Thread Željko Filipin
On Wed, Nov 21, 2012 at 9:51 PM, Ry crossan...@gmail.com wrote: Zeljko, are you aware of any site providing documentation to set up and/or using watir-webdriver with selenium grid? I do not think any special setup is required. You can see how the software that runs Wikipedia (MediaWiki) is

[wtr-general] Can you create an array from the values in a select list?

2012-11-21 Thread Adrian Killens
I can do it with options like this: selectList = b.select_list(:id, 'blah') selectContent = selectList.values.map(:text) b.select(:id, 'blah').select_value(selectContent[1]) But was wondering how I could do the same thing using the value rather than just the option? Cheers Aidy --

Re: [wtr-general] Can you create an array from the values in a select list?

2012-11-21 Thread Oscar Rieken
what does the html of the select list look like On Wed, Nov 21, 2012 at 5:14 PM, Adrian Killens ack...@googlemail.comwrote: I can do it with options like this: selectList = b.select_list(:id, 'blah') selectContent = selectList.values.map(:text) b.select(:id,

Re: [wtr-general] Can you create an array from the values in a select list?

2012-11-21 Thread Adrian Killens
It looks like this and I'd live to get an array of 1, 2, 3 rather than Thing One, Thing Two, Thing Three. select name=things size=1 onchange=# id=things class=test option value=1Thing One/option option value=2Thing Two/option option value=3Thing Three/option /select Hope that makes sense. On

Re: [wtr-general] Can you create an array from the values in a select list?

2012-11-21 Thread Oscar Rieken
I have a few questions. Why would you want to collect the values to make sure they are in the select? what if they are not in the right order? what if the text and the values do not match up correctly? what value is this test really giving? but to answer your question which you were on the right

Re: [wtr-general] Parallel testing

2012-11-21 Thread Ry
Thank you for those. I should have clarified, I was seeking documentation or source for purpose of showing my company that it CAN work. We recently presented watir-webdriver and another group presented selenium-webdriver and the final decision is being based on if watir can work in parallel