Automated Test Framework: Standard change related record producers failing at submission stepIssue Automated Test Framework (ATF): Out of the box Standard change-related record producers failing at "Submit Record Producer" test step with a failure message: "FAILURE: Cannot find 'Submit' button" Unable to open and submit the "Retire a Standard Change Template" Record Producer in Automated Test Framework (ATF) because the Automated Test Framework (ATF) cannot find the "Save" button.Because this is opening on a Record/Service Catalog record, using the Custom UI Test steps does not work. They have their own test steps for this. The steps for using the Service Catalog/Record Producer also fail because the "Order Now" or "Submit" UI Actions are not found on the form. Steps to Reproduce Create an ATF test as follows: Open a Record Producer: Retire a Standard Change TemplateSet Variable Values: Template description = TestTemplate to retire = Add network switch to datacenter cabinet Submit Record Producer Expected Behavior: Submits Record Producer successfully Observed Behavior: Test fails with a message "FAILURE: Cannot find 'Submit' button" CauseOut of the box test step "Submit Record Producer" only checks for the 'Submit' button. Standard change Record Producers' render different buttons than the normal one Details Unfortunately, there is no Out of the box test step configuration that could allows to perform the "Save" action on Standard Change-related Record Producers Workaround Open 'Submit Record Producer' step config [instance/sys_atf_step_config.do?sys_id=ed59d8e5c332220076173b0ac3d3ae6a]In the step execution script, find the line mentioned below (Most probably line# 104): var actionElement = testFrameWindow.gel(buttonId); After that line add the following code if (!actionElement) {// try to get save button elementactionElement = testFrameWindow.gel('submit_button_std_chg_new');} Related LinksThis requirement can be added to Idea Portal or vote for one (if it is already submitted). Our Dev teams will review and consider for future releases based upon the feasibility and priority. Refer to Idea Management for customer enhancement request for more information on Idea Management for customer enhancement requests.