如何使用VB腳本檢查某個列是否在webtable中完全刪除?如何檢查某個列是否在webtable中完全刪除?
我在一個webtable中創建了一行並將其刪除。我想檢查該列是否從該webtable中刪除或不。我已經寫了一個腳本,並且有一段艱難的時間來編寫邏輯。我可以從一個webtable中獲得完整的行數,並可以逐個循環。但如何檢查該列是否從webtab中刪除?
rowCount = SwfWindow(obj).SwfTable(tbl).RowCount
For i = 0 To rowCount - 1
names = SwfWindow(obj).SwfTable(tbl).GetCellData(i, 1)
If names = mycolname 'mycolname is the name of the column deleted Then
SwfWindow(obj).SwfTable(tbl).ClickCell i,1
Print "col name is present in the table"
Exit for
else
Print "col name is deleted completely from the table"
End If
Next
你是指像QTP一樣的webtable? – Smandoli
是的,這是正確的 – user3381098
那麼你想檢查什麼:如果列不見了?但是你說:「我在一個webtable中創建了一行並將其刪除,我想檢查該colmn是否從該webtable中刪除」您創建了一個COLUMN並稍後將其刪除。你想檢查列是否仍然存在。對? – TheBlastOne