Hi Team
I'm facing an issue in asserting the headers row in an excel sheet.
column1, column2, column3, column4, column5, column6
If this is the case, cypress fails in finding column 3 & 4 even though it is present.
expect(exports.convertArrayValuesToString(Object.keys(rows[0]))).to.deep.eq(headers);
This is the code I'm using where
convertArrayValuesToString contains
return array.join('@#').split('@#')
Help me out of this.