Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>The information that goes between and is known as the table data. Here is a more fleshed out table, and the meanings:</p> <pre><code> &lt;table&gt; &lt;tr&gt; &lt;th&gt;Table header for column 1&lt;/th&gt; &lt;th&gt;Table header for column 2&lt;/th&gt; &lt;th&gt;Table header for column 3&lt;/th&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;data in row 1, column 1&lt;/td&gt; &lt;td&gt;data in row 1, column 2&lt;/td&gt; &lt;td&gt;data in row 1, column 3&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;data in row 2, column 1&lt;/td&gt; &lt;td&gt;data in row 2, column 2&lt;/td&gt; &lt;td&gt;data in row 2, column 3&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;data in row 3, column 1&lt;/td&gt; &lt;td&gt;data in row 3, column 2&lt;/td&gt; &lt;td&gt;data in row 3, column 3&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> <p>So you have the pair of tags for the table itself .. , then the pair for the header or title ... , and the pair of tags for each row ... , and finally, the tag you are asking about is where the table data goes: ... . It is really very simple. </p> <p>Sorry about the half post. I was having some finger trouble, and my old mac was not cooperating either. CHEERS!</p> <p>I've added this. It doesn't format really well in the comment. So you need the following code to load the page (assuming google.ca, for example), and then to find the tag:</p> <pre><code>driver.get "http://www.google.ca" table_data = driver.find_element(:tag_name, "td") </code></pre> <p>Again, I worked out how to do this from <a href="http://seleniumhq.org/docs/03_webdriver.jsp#selenium-webdriver-api-commands-and-operations" rel="nofollow">here</a>.</p> <p>CHEERS. (I hope I understood you properly this time).</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload