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.