0
計數器我使用下面的代碼來獲取隨機生成的一排ID:如何使用XPath的
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
或2
而不是counter
,它會返回該ID。任何想法如何使用該櫃檯獲取行ID?