我想使用 Google 电子表格中的 Robot Framework 读取数据。例如,电子表格的位置是:- https://www.swiggy.com/pop/listing
谁能指导我要编写哪些 RF 步骤来读取工作表数据并将其作为列表存储在 RF 中。?
我写的步骤:
${Excel_List}= Create List
Open Excel ${Excel_Path}
FOR ${i} IN RANGE 2 15
${data} Read Cell Data By Name External ids A${i}
Append To List ${Excel_List} ${data}
Log ${Excel_List}
谢谢你