ATF fails with error "unable to find submit button" when trying to submit a record producer from a Service PortalIssue When trying to test the submission of a record producer through ATF, it fails with error "unable to find submit button".ReleaseAll ReleasesCauseCustomer is using a custom UI macro for the submit button on the record producer. It does not have the button_id defined on the UI macro. Since the button_id is missing the ATF is not able to recognize the Submit button. Also, ATF searches for the button_id "submit_button".ResolutionGo to the macro, and update your macro to have the button_id defined. For example:Your current macro contains: <a href="#" class="request_catalog_button" onclick="saveProducer('${sysparm_cart_edit}'); return false;"> ${gs.getMessage('Submit')} </a>Update the code to: <a href="#" id="submit_button" class="request_catalog_button" onclick="saveProducer('${sysparm_cart_edit}'); return false;"> ${gs.getMessage('Submit')} </a>