`<table>
<tr>
<td>
<div>Preeti</div>
</td>
<td>
<div>1</div>
</td>
</tr>
<tr>
<td>
<div>Preeti</div>
</td>
<td>
<div>2</div>
</td>
</tr>
</table>`
I want to write CSS or Xpath selector, for the above code where The Output should be "Preeti 2", the catch is that the "Preeti" should come from the First tag, and "2" should be from the 2nd tag. The CSS or Xpath for the above should be in a single line. For Example: tagname#value,tagname#value [here two CSS are combined in one line] similarly want to do the above but don t know how.