我正在使用以下代码来获取随机生成的行的 id:
string[] rowIds = new string[numofRowsPassengerTable];
for (int counter=1; counter < numofRowsPassengerTable; counter++)
{
rowIds[counter] = browser.GetAttribute("xpath=//table[@id='tblPassengers']/tbody/tr[counter]@id");
}
但是上面没有返回任何东西。如果我使用1
or2
代替counter
它返回 id。知道如何使用该计数器来获取行 ID 吗?