I am new at this. Is the following anywhere near the correct usage for find_text_in_element()?
When /^There should be a "([^\"]*)" where the "([^\"]*)" is "([^\"]*)"$/ do |klass, attribute, value|
filter_on(klass, field, value)
element = "css=div.populated input[value$=/:#{klass}] ~ div table[id=table_Summary]"
$browser.find_text_in_element(value, element) #what happens if this doesn't find anything? fail?
#TODO -- does not handle case where object exists but is not within visible filter results
end
Thanks!!