html - How to select items which is displayed in Grid result -


<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 click on 1 of these td values via gui, should selected in search field in form.

could 1 meregarding this.

i'm not sure asking, based off title i'm going give example answer:

table

abc def foo bar jkl mno 

xpath

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

this select bar following breakdown.

find row[that has column, text ‘foo’] column [that second]


Comments

Popular posts from this blog

javascript - Enclosure Memory Copies -

php - Replacing tags in braces, even nested tags, with regex -