Ejemplo n.º 1
0
def GetRowData(strColumnName):
    columnIndex = GetColumnIndexByName(strColumnName)
    rowCount = GetRowCount(strColumnName)
    rowList = list()
    for rowIndex in range(1, rowCount + 1):
        cellValue = Users.Cell(columnIndex, rowIndex).textContent
        rowList.append(cellValue)
    return rowList