I forgot to ask you to post your html.<br><br>If you have html that looks like this<br><br>&lt;table&gt;<br>&lt;tr&gt;<br>&lt;td bgcolor=red&gt;<br>text<br>&lt;/td&gt;<br>&lt;/tr&gt;<br>&lt;/table&gt;<br><br>you can get the html of cell with this (watir 
1.5.1.1081)<br><br>irb(main):005:0&gt; ie.table(:index, 1)[1][1].html<br>=&gt; &quot;\r\n&lt;TD bgColor=red&gt;text &lt;/TD&gt;&quot;<br><br>If you want to see if there is text &quot;red&quot; (without quotes) this will do it
<br><br>irb(main):012:0&gt; ie.table(:index, 1)[1][1].html.match(&quot;red&quot;)<br>=&gt; #&lt;MatchData:0x2e01170&gt;<br><br>Just to make shure, it would return nil for any other colour<br><br>irb(main):014:0&gt; ie.table
(:index, 1)[1][1].html.match(&quot;black&quot;)<br>=&gt; nil<br><br>I could be more precise if you posted a html snippet.<br>-- <br>Zeljko Filipin<br><a href="http://zeljkofilipin.com">zeljkofilipin.com</a>