这是示例代码:
set myExcelDB to {type:"excel", file:ResourcePath(testRunFilePath), name:"TestRun" ,writable: Yes}
put the records of myExcelDB into allTestRunRecords
repeat with each item of allTestRunRecords
put 1 into counter
put counter into currentRow.passed //why is this counter number not updated into my excel file?
end repeat
我将计数器值从运行窗口存储到 currentRow.passed 字段中,但 excel 没有更新。我错过了什么吗?我想存储到当前行的“通过”列。