Posted 19 January 2021, 5:37 am EST
Hi,
I am automating SpreadJS with Selenium and having issues in getting desired cell value (text).
I also tried in chrome console but it didn’t help me.
This is what I am doing in chrome console.
Page I am automating:
https://www.grapecity.com/spreadjs/demos/sample/showcase/aging-report/purejs/
var hostDiv = document.getElementById("ss");
window.testSpread = new GC.Spread.Sheets.Workbook(hostDiv);
var Res = window.testSpread.getActiveSheet().getValue(8,3);
console.log(Res);
Please guide me what I am doing wrong ?