Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to locate the index of a certain table header based on the :text value held within that table header. I've collected all the table headers using .ths however I'm unsure what is the best way to do a search on this array to find the table header with the correct value inside. I tried using the array.index function however did not seem to work. I'm trying to avoid looping through the whole array to find the index if possible. Here is my snip-it of code.

location = @browser.table(:id, "sprintCalTable").tr.ths
index = location.index(data)

Thanks.

share|improve this question
I got lost. What are you trying to do? Also, please post relevant HTML. – Ċ½eljko Filipin Jul 11 '12 at 13:18

1 Answer

up vote 1 down vote accepted

I would collect all the text from the headers and then do the index.

headers = @browser.table(:id, "sprintCalTable").tr.ths.collect{ |x| x.text }
index = headers.index(data)

Not sure if you consider that too much like looping through the whole array.

share|improve this answer
ah that looks perfect Justin plus makes more sense. Thanks! – Simon Jul 11 '12 at 14:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.