Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
function test() {
    document.editform.wpTextbox1.value = "\congrats test worked -->"; //Add the base text for the sandbox
    document.editform.wpSummary.value = "WEEEEEE"; //Make a descriptive edit summary
    document.editform.wpMinoredit.checked = true; //Make it a minor edit
    document.editform.wpSave.click(); //Submit it!
}
 
function addTestTab() {
    if( wgPageName == "User:UncleGiggo" && ( wgAction == "edit" || wgAction == "submit" ) ) //Add the tab for previews, edit conflicts, and bare editing of the page;
      { addToolboxLink( 'javascript:test()', 'test', '', '', '' ) }
}

$(addTestTab);

importScript('User:Voice of All/Addtabs/monobook.js');