How can I set a cell value using JavaScript in Selenium when the element has been created using spreadjs and I am unable to access the element's value?
string query = "GcSpread.Sheets.findControl(document.getElementById(\"" + _sheetName + "\")).getSheet(0).setValue(" + rwPos + ", " + colPos + ",'" + strCellVal +"')";
Although this query successfully enters the value, it seems to only input the value in the textbox without actually setting it. Can anyone provide assistance on how to properly set the value?