I'm using nodejs selenium for my automation testing and stuck with my code and was not able to print the value of A1 cell which is "admin"
How could I print the value of my A1 cell?
var XLSX = require('xlsx');
var workbook = XLSX.readFile('DataDriven1.xlsx');
var sheet_name_list = workbook.SheetNames;
console.log(sheet_name_list.getCell('A1').value);