You would have to query the dom to programmaticall...
# suitescript
j
You would have to query the dom to programmatically click the save button.
Copy code
var saveBtn = document.getElementById('submitter');
if (saveBtn) {
  saveBtn.click();
}