Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<DIV class=x-grid3-scroller id=ext-gen742>
<DIV class=x-grid3-body id=ext-gen743>
<DIV class=x-grid3-row  x-grid3-row-first x-grid3-row-last >
<TABLE class=x-grid3-row-table>
<TBODY>
<TR>
<TD> class=x-grid3-col x-grid3-cell x-grid3-td-0 x-grid3-cell-first 
<td> class=x-grid3-col x-grid3-cell x-grid3-td-1 
<td> class=x-grid3-col x-grid3-cell x-grid3-td-2
<td> class=x-grid3-col x-grid3-cell x-grid3-td-3

Once I click on any one of these TD values via GUI, it should be selected in the search field in the form.

Could any one help meregarding this.

share|improve this question
I'd like to help, but I'm having trouble understanding your question. What does the mass of class=... mean? What are you looking to test with Selenium? – Adam Feb 10 '11 at 19:23

2 Answers

I'm not sure what your asking, but based off the title I'm going to give this example as an answer:

table

abc def
foo bar
jkl mno

XPath

//tr[td/text()='foo']/td[2]

This would select bar with the following breakdown.

find any row[that has a column, with text that is ‘foo’] with a column [that is the second]

share|improve this answer

I'm not sure what your asking, but based off the title I'm going to give this example as an answer:

table

abc def
foo bar
jkl mno

XPath

//tr[td/text()='foo']/td[2]

This would select bar with the following breakdown.

find any row[that has a column, with text that is ‘foo’] with a column [that is the second]

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.