I want to read data using Robot Framework from Google spread sheet. say for example the spreadsheet location is :- https://www.swiggy.com/pop/listing
Can anyone guide me what RF steps are to be written to read the sheet data and store as a list in RF.?
Steps I've Written:
${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}
Thank You

You can try with excelibrary the following two lines
Here, Sheet1 is the worksheet and 1 is the row#
OR
You can convert excel file to CSV and then, make use of CSVLibrary and the below keywords from CSVlibrary.
You can install the following library and use one the keywords which converts cvs in to list or convert cvs into list of lists or convert csv into dict.
Sample Example
Here, the below line creates a lost of lists, instead of a single list.