I have a table defined like this:

<table id="table1">
   <thead>
      <tr>
         <th><input type="checkbox" id="check_all" /></th>
         <th><a href="#" id="date">start date</a></th>
        <th>....</th>
      </tr>
   </thead>

   <tbody>
     <tr>
        <td>...</td>
    </tr>
  </tbody>
</table>

I am trying to access the table headers, need to click on the table
header to sort and check the checkbox.

I used something like this:

getTableMaxRowNum ("table1")   returns the correct row count
getTableMaxColumnNum("table1") returns correct column count

getTableHeaderColumnNum("table1") returns selenium error

isElementPresent("table1.header[1]")  returns false

This is how i defined the UI defintions:

Table(uid: "table1", clocator: [id: "table1"] {

   InputBox(uid: "{header: 1}", clocator: [:]

   ...

}



-- 
You received this message because you are subscribed to the Google Groups 
"tellurium-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/tellurium-users?hl=en.

Reply via email to