I want to create an Excel file and add input data into it using Robot Framework. So I added the Excel Library. Here's the code I use, I got an error message saying
IndexError: list index out of range
So I commented the 3rd line and got the column and row count which are 0.
Create Excel Workbook NewExcelSheet
Save Excel NewExcel.xls default=True
Open Excel NewExcel.xls default=True
Put Number To Cell NewExcelSheet 1 1 90
${Col}= Get Column Count NewExcelSheet
${Row}= Get Row Count NewExcelSheet
Log ${Col}
Log ${Row}
Why am I getting 0 as values for the columns and rows and why am I not able to add values in it?