Not sure about why, but maybe it is something like JS or hidden element.
I need to click on "Confirmar" button, but for some reason its not clickable.
This button is into a diferent "block" then the others that I fill in the form.
this the html of this button
<input type="submit" name="ctl00$WpModaisCrm1$ctl03$btnRegistrarProtocolo" value="Confirmar" id="btnRegistrarProtocolo" class="btn btn-primary pull-right" autocomplete="off">
the "Cancelar" button html is:
<input type="submit" name="ctl00$WpModaisCrm1$ctl03$btnCancelarProtocolo" value="Cancelar" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$WpModaisCrm1$ctl03$btnCancelarProtocolo", "", true, "", "", false, false))" id="ctl00_WpModaisCrm1_ctl03_btnCancelarProtocolo" class="btn btn-primary button-padding" data-dismiss="modal" autocomplete="off">
and there is an hidden element with this HTML
<input type="submit" name="ctl00$WpModaisCrm1$ctl03$btnCarregarUcProtocoloAtendimento" value="" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$WpModaisCrm1$ctl03$btnCarregarUcProtocoloAtendimento", "", true, "", "", false, false))" id="btnCarregarUcProtocoloAtendimento" style="display: none" autocomplete="off">
code:
confirmar = driver.find_element_by_id("btnRegistrarProtocolo")
print(confirmar.is_enabled()) # return True
print(confirmar.is_displayed()) # return True
print(confirmar.is_selected()) # return False
confirmar.submit() # doesn't work
confirmar.click() # doesn't work
click()
and submit()
does nothing...
EDIT
I also can't reach the "Confirmar" button usign "Tab", only with mouse