The element that i'm talking about is the folowing:
<tbody>
<tr id="tableUsers_0__TR" class="active" name="Tr_tableUsers[0]_Selected">
<td>
<input id="tableUsers_0__POSName" type="hidden" value="Indian" name="tableUsers[0].POSName"/>
Indian
</td>
The solution that i propose is: First Step is Locate Element By Xath:
string xpath = ".//*[@id='tableUsers_0__PDVCode']/..";
Then get Text with the method:
driver.FindElement(By.XPath(xpath)).Text
It's the best Way? or not? There is another way better thant this way? better than the use of Xpath.