<table>
<tr>
<td>hello</td>
<td><img src="xyz.png" width="100" height="100"></td>
</tr>
</table>
tabledata.rows.each do |row|
row.cells.each do |cell|
puts cell.text
end
end
puts "end"
出力の取得 ->
hello
end
このような出力のために私は何をすべきですか - >
hello
xyz.png
end
のこぎりを使わずに。