I am using Selenium to try and press this button, but Selenium complains that it does not exists
<button name="button" type="submit" class="btn btn-primary"><span class="show-when-enabled"><svg class="bi flex-shrink-0 me-2" height="24" role="img" width="24"><use href="#icon_content-save"></use></svg><span class="pe-3">Save Database/Server</span></span><span class="show-when-disabled"><span class="spinner-border spinner-border-sm"></span><span class="px-3">Please wait, saving record...</span></span></button>
Here is the first command
driver.find_element_by_css_selector("button[type=submit]").click()
This is the second
driver.find_element(By.LINK_TEXT, "Save Database/Server").click()
and the third command
driver.find_element(By.XPATH, "//a[.//span[text()='Save Database/Server']]").click()
All three error because Selenium says it does not exists. How should I press the submit button?