From: "Horváth Alex" Date: 2013-02-13T01:03:31+09:00 Subject: text include, searching using a part of the word, storing the whole word if found Hey guys, I'm about the extend my watir testcases with dict error checking for our tests. I managed to make the check, but I'd like to select the whole word and store it in a variable or to write in a txt file. So in practice, I'd like my scripts to if "???" (dict errors in our system are in the following format ???x.Y???) is found on the current page than select the whole word and write in a txt file. Also it would be nice to store all of these dict errors (in case there are several on the page) Here is what i've got so far ##################### Dict error check ########################################################### if ie.text.include? "??" puts "!!!!!!!!!!!" puts "DICTERROR" puts "!!!!!!!!!!!" input = gets else end ##################### END OF Dict check ########################################################### Thanks in advance, BR, Alex -- Posted via http://www.ruby-forum.com/.