Forum Discussion
william_roe
12 years agoSuper Contributor
The control is found in Firefox and Chrome but setting the text property is not working in Chrome. I've tried using the 'SetText' method and still does not work in Chrome.
if (spinner != null){
//spinner.text = value;
spinner.SetText(value);
}
else{
Log.Error("Could not locate auto purchase id '" + id + "'");
}
IE is failing to find the object on the following ling:
var id = table.rows[1].cells[24].innerText;
if (spinner != null){
//spinner.text = value;
spinner.SetText(value);
}
else{
Log.Error("Could not locate auto purchase id '" + id + "'");
}
IE is failing to find the object on the following ling:
var id = table.rows[1].cells[24].innerText;