Este fórum está sendo desativado

Depois de 9 anos, este fórum será desativado. Mas calma.... estamos migrando para uma comunidade no DISCORD. Junte-se a nós.

ENTRAR PARA DISCORD

Tópicos relacionados a códigos VBA, gravação de macros, etc.
#73230
Prezados(as),
Estou precisando de um ajuda com uma macro para inserir o CPF ou CNPJ em uma caixa de texto (input) no site https://cndt-certidao.tst.jus.br/gerarCertidao.faces.

Código: Selecionar todos
sub ConsultaCndT()

    Dim chrome As New Selenium.ChromeDriver
    Dim url As String
    Dim html As HTMLDocument

    Cnpj = "12.345.678/0001-99"
    Cnpj = Project.ReplaceAll(Cnpj5, "", "/", "-", ".", " ")
    
    url = "https://cndt-certidao.tst.jus.br/gerarCertidao.faces?cpfCnpjvalue=" & Cnpj
    
    Set chrome = New Selenium.ChromeDriver
    
    chrome.Start
    chrome.Get (url)
    chrome.Wait 750
    
    Set html = New HTMLDocument
    html.body.innerHTML = chrome.PageSource
    
        chrome.Wait 750
        html.getElementById("gerarCertidaoForm:cpfCnpj").innerHTML = Cnpj
    '....................................
    chrome.Quit
End Function 
No IE consegui acessar pelo Xpath "//div[@id='divFormulario']/table/tbody/tr/td/input", porém não consegui mudar o código pro Chromedriver.

Segue código da página obtido com o Debug.Print html.body.innerHTML:
Código: Selecionar todos
function mostrarMensagem(){
    jQuery('#divMensagem').show();
    jQuery('#divFormulario').hide();
    jQuery('#divSucesso').hide();
    document.getElementById('gerarCertidaoForm:btnEmitirCertidao').style.display = 'none';
    document.getElementById('gerarCertidaoForm:btnEmitirCertidaoEEnviarPorEmail').style.display = 'none';
}

function emitirCertidao(){
    document.getElementById('gerarCertidaoForm:podeFazerDownload').value = 'false'; 
}

var emailValido = true;
function emitirCertidaoEValidaEmail(){
    let emailUsuario = document.getElementById("campoEmail").value;
    if ( isEmailValido(emailUsuario) ) {
        emailValido = true;
        document.getElementById("emailUsuario").value= emailUsuario;
        document.getElementById('gerarCertidaoForm:podeFazerDownload').value = 'false';
        
        document.getElementById("botaoEmitirEEnviar").style.display = "none";
        document.getElementById("campoEmail").style.display = "none";
        document.getElementById("gerarCertidaoForm:btnEmitirCertidaoEEnviarPorEmail").style.display = "none";
    } else {
        emailValido = false;
        return false;
    }
}

function fazerDownload(){
    var podeFazerDownload = document.getElementById('gerarCertidaoForm:podeFazerDownload').value;
    if (podeFazerDownload == 'true'){
        if ( document.getElementById("emailUsuario").value ) {
            enviaEmail();
        } else {
            jQuery('#divMensagem').hide();
            jQuery('#divFormulario').hide();
            jQuery('#divSucesso').show();                       
            window.parent.location = '/emissaoCertidao;jsessionid=oddMoXpxA0rOG2WU6AxpYaRKLGoAsvnwwcGBPnx1.cndt-certidao-41-xr6rd?pfnc=8795987843535574';
        }
        //window.location = '?pfnc=4532012264672036';
    }
}

function enviaEmail(){
    var podeFazerDownload = document.getElementById('gerarCertidaoForm:podeFazerDownload').value;
    if (podeFazerDownload == 'true'){
        jQuery.getJSON( '/emissaoCertidao;jsessionid=oddMoXpxA0rOG2WU6AxpYaRKLGoAsvnwwcGBPnx1.cndt-certidao-41-xr6rd?pfnc=6507108410050594', function( data ) {
            jQuery('#divMensagem').hide();
            jQuery('#divFormulario').hide();
            if ( data.success ) {
                document.getElementById("mensagemSucessoCertidaoEmitida").style.display = "none";
                document.getElementById("mensagemSucessoCertidaoEEmail").style.display = "";
                jQuery('#divSucesso').show();    
            } else {
                jQuery('#divErro').show();    
            }       
        });
    }
}

function mostrarCamposDeAudio() {
    document.getElementById("idUrlServletSoundCaptcha").href = document.getElementById("idUrlServletSoundCaptcha").href + 'pfnc=' + Math.random() + '.mp3';
    document.getElementById("audioCaptcha").style.display = "";
    document.getElementById("googleRecaptcha").style.display = "none";
    document.getElementById("gerarCertidaoForm:textoAudioCaptcha").focus();
}

function onError(e){
    consolole.log("Erro no hcaptcha", e);
}

</script></body>
document.getElementById("gerarCertidaoForm:cpfCnpj").value == "" ) {
                        alert("Por favor preencha o CPF ou CNPJ.");
                        document.getElementById("gerarCertidaoForm:cpfCnpj").focus();
                        return false;
                    } else if ( document.getElementById("idCampoResposta").value == "" ) {
                        alert("Por favor preencha o captcha.");
                        document.getElementById("idCampoResposta").focus();
                        return false;
                    } else if ( !emailValido ) {
                        alert("E-mail inválido. Por favor digite um e-mail válido.");
                        document.getElementById("campoEmail").focus();
                        return false;
                    } else {
                        return true;
                    }
                }
                
            </script>
<form name="gerarCertidaoForm" id="gerarCertidaoForm" onsubmit="return validarForm();" action="/gerarCertidao.faces;jsessionid=aGI2zQ0sFXiFnstK5TuoXHs0NXMAnX8GdHIyGMk8.cndt-certidao-41-dhz4b" enctype="application/x-www-form-urlencoded" method="post">
<input name="gerarCertidaoForm" type="hidden" value="gerarCertidaoForm">
<span id="gerarCertidaoForm:areaMensagemErro">
    <div id="mensagens">
        
    </div>
</span> 
<div class="corpo" id="corpo"><input name="gerarCertidaoForm:podeFazerDownload" id="gerarCertidaoForm:podeFazerDownload" type="hidden" value="false"><h3>Emissão de certidão de débito trabalhista</h3><fieldset class="fieldsetForm" style="color: navy;"><div id="divFormulario"><table width="100%" border="0"><tbody><tr><td width="330"><div><label for="cpfCnpj">* Informe o número do CNPJ / CPF:</label></div><input name="gerarCertidaoForm:cpfCnpj" title="Registro no Cadastro Nacional de Pessoas Jurídicas ou no Cadastro de Pessoa Física" class="caixaTexto" id="gerarCertidaoForm:cpfCnpj" style="margin-top: 5px; margin-bottom: 5px; background-color: rgb(255, 255, 204);" onkeyup="javascript:formataCnpjCpf(this);" type="text" maxlength="18" value="" autocomplete="off">33592510000154</td></tr><tr valign="middle"><td valign="middle"><label for="idCampoResposta">
                                    * Digite os caracteres exibidos na imagem abaixo ou clique em Ouvir
                                    </label><img id="idImgBase64" alt="Captcha para permitir a consulta."><br><input name="resposta" title="Digite os caracteres da imagem acima ou clique no botão ouvir, pode-se ouvir também ao utilizar as teclas ALT + O." class="caixaTexto" id="idCampoResposta" style="text-transform: lowercase;" type="text" autocomplete="off"><input name="tokenDesafio" id="tokenDesafio" type="hidden" value=""><button title="Ouvir caracters do captcha." style="height: 29px; color: white; background-color: rgb(51, 102, 153);" onclick="ouvirAudio(event)">Ouvir</button><audio id="idAudioCaptcha"></audio></td></tr></tbody></table><div style="width: 100%; text-align: right; font-size: 8pt;">
                            * Campos Obrigatórios
                        </div></div><div id="divMensagem" style="display: none;"><center><span id="gerarCertidaoForm:mensagemAguarde"><span>Aguarde a emissão da certidão...<br><img width="32" height="32" align="bottom" src="img/loading.gif"></span></span><br><br><br><input name="gerarCertidaoForm:j_id_jsp_216541370_7" class="botao" style="margin-right: 20px;" type="submit" value="Emitir Nova Certidão"><input name="gerarCertidaoForm:j_id_jsp_216541370_8" class="botao" style="margin-right: 20px;" type="submit" value="Validar Certidão"></center></div><div id="divSucesso" style="display: none;"><center><span id="gerarCertidaoForm:mensagemSucesso"><span id="mensagemSucessoCertidaoEmitida">Certidão EMITIDA com sucesso.</span><span id="mensagemSucessoCertidaoEEmail" style="display: none;">
                                       Certidão EMITIDA e ENVIADA por e-mail com sucesso. <br><span style="font-size: 12px;">
                                           Caso não receba a certidão em sua caixa de e-mail principal, 
                                           <br>lembre-se de verificar também no SPAM e Lixeira.
                                       </span></span></span><br><br><br><input name="gerarCertidaoForm:j_id_jsp_216541370_11" class="botao" style="margin-right: 20px;" type="submit" value="Emitir Nova Certidão"><input name="gerarCertidaoForm:j_id_jsp_216541370_12" class="botao" style="margin-right: 20px;" type="submit" value="Validar Certidão"></center></div><div id="divErro" style="display: none;"><center><span id="gerarCertidaoForm:mensagemErro"><span>Ocorreu um erro na emissão da certidão ou envio de e-mail. Por favor tente um e-mail diferente ou tente mais tarde.</span></span><br><br><br><input name="gerarCertidaoForm:j_id_jsp_216541370_15" class="botao" style="margin-right: 20px;" type="submit" value="Emitir Nova Certidão"><input name="gerarCertidaoForm:j_id_jsp_216541370_16" class="botao" style="margin-right: 20px;" type="submit" value="Validar Certidão"></center></div></fieldset><br><div><input name="gerarCertidaoForm:btnEmitirCertidao" title="Emitir Certidão, o PDF da certidão será baixado." class="b
otao" id="gerarCertidaoForm:btnEmitirCertidao" onclick="emitirCertidao();A4J.AJAX.Submit('gerarCertidaoForm',event,{'similarityGroupingId':'gerarCertidaoForm:btnEmitirCertidao','actionUrl':'/gerarCertidao.faces;jsessionid=aGI2zQ0sFXiFnstK5TuoXHs0NXMAnX8GdHIyGMk8.cndt\x2Dcertidao\x2D41\x2Ddhz4b','containerId':'j_id_jsp_216541370_0','parameters':{'gerarCertidaoForm:btnEmitirCertidao':'gerarCertidaoForm:btnEmitirCertidao'} ,'status':'j_id_jsp_216541370_0:status'} );return false;" type="button" value="Emitir Certidão"><input title="Emitir e Enviar Certidão por e-mail." class="botao" id="botaoEmitirEEnviar" onclick="mostrarCampoEmail();" type="button" value="Emitir e Enviar Certidão por e-mail"><br><input class="caixaTexto" id="campoEmail" style="width: 274px; text-align: left; margin-top: 10px; display: none;" type="text" placeholder="Digite seu e-mail"><input name="gerarCertidaoForm:btnEmitirCertidaoEEnviarPorEmail" title="Envia a certidão para o email digitado." class="botao" id="gerarCertidaoForm:btnEmitirCer
tidaoEEnviarPorEmail" style="margin-left: 5px; display: none;" onclick="emitirCertidaoEValidaEmail();A4J.AJAX.Submit('gerarCertidaoForm',event,{'similarityGroupingId':'gerarCertidaoForm:btnEmitirCertidaoEEnviarPorEmail','actionUrl':'/gerarCertidao.faces;jsessionid=aGI2zQ0sFXiFnstK5TuoXHs0NXMAnX8GdHIyGMk8.cndt\x2Dcertidao\x2D41\x2Ddhz4b','containerId':'j_id_jsp_216541370_0','parameters':{'gerarCertidaoForm:btnEmitirCertidaoEEnviarPorEmail':'gerarCertidaoForm:btnEmitirCertidaoEEnviarPorEmail'} ,'status':'j_id_jsp_216541370_0:status'} );return false;" type="button" value="Enviar"><span id="j_id_jsp_216541370_0:status"><span id="j_id_jsp_216541370_0:status.start" style="display: none;"></span><script type="text/javascript">
window.document.getElementById('j_id_jsp_216541370_0:status.start').onstart=function(){mostrarMensagem();};
</script><span id="j_id_jsp_216541370_0:status.stop"></span><script type="text/javascript">
window.document.getElementById('j_id_jsp_216541370_0:status.stop').onstop=function(){fazerDownload();;};
</script></span><input name="emailUsuario" id="emailUsuario" type="hidden" value=""></div></div><input name="javax.faces.ViewState" id="j_id_jsp_216541370_0:javax.faces.ViewState:0" type="hidden" value="K1SlCCMwB8ZsSZTVupkS2Fmf/ghCoDSndUqNeh2+9vqhgbNuQ3Q6/kydhoKGwCuePb4bxbJ3cABqLT7vH5Q15l1XdA8fGSTvQIlweE4jVeouOz72q2bkzvfKGZohaWGNLh7EhRLbEpuBqw3zpGJTJzqhXcSUTrLXB4mvgyjcGIO2JllCcvEE4L165A4ec9Wijx2jEhQ19/9XTCcch8UrXge+7Y14ZZdk874IVGHEIFtS1fIS9idvRqZNOyCuFBtG6nD0WEbsXmTsgSpk9dUXG1jR/meXn/g4MvysrbroEDDH5lRPXZ7VrDVgBC82HlVYSRnfZj2RwX8RpDfSk3zliOZ5cbRpAKHf4EpZVgVg42K+VtVGBopvLpn2eGFRBlowhVBJqyIX2I/qT4iJLD3mp1E+Ea01kyUZR0efne8wwN+P6wBeAFDU01tr0uGNTBHIZsdMBvu73q9B4V4j1ng4hgLr6n8eLlt23yyUbiirItG9TJybin7hOei/Lzlz9ixzLxHLF1I14d8Tts4D/NPlkRvr1KV+sJefy88KMKvPbgf842b1y92Xj7tBp74vmXJX2lq/H/1R1UlgQ8fSXQJmuwOz3Sv1q08D+jICiic+eJBONSZLPSbOYIUSHvzsFNUiHuZZnY4uNWqdCC1TjfS16XG5ja4DHh4ij3eTFEMH2T85VsBznfwWCrXr65/PWuCC2829joDWRhT/o66D0HYvP31305TI2mDgAYfBXjVpc4N6sAvWg8dL93CILW5GeJwb0JQS1u6FpybWkvzpbCEUGsqS+vQ7yPO93WhY8HsvuIOB4LAtLr11
jOrWM24OT5GB+o29WCJX+jJDx8zCLjP/B8GzuiviaC87T27kG6OcEekohu56YOEOYFuDMHOui0vpEeABByak+44OJNu5eF3NCnKYU+i43plBj5x/kmT66DFjf2eWaOc8STCwKxKzb4oZLevmZSvtwwncZ767DX5hvzhEfwxxWF+0Z4wuUNI/hW2YJ665CA1Xi3aRCNIoHK9d7Q5FjILGNX/4fSGV0vLpoYDdXUlIbRlvZ/5JEojrr3vHrvTOn0QBaMPqMj2tZxj0gp/B24IXPKGGpLqmKh3wo7rIcDm9nJMVKMDl4g1jqHbFkGGbAW1g7zWARQAI8eJQKbT+QL+mLJydLl/hFYD4l3QTjNqCFZTVRXKxxosi6TiZgqEuNtK+nBmQHQT1BQcBbdbpc9fRXa3dpxEqMtaTPbTn6vuZKK5xuyimV8eGy8yV85+H5XECCvMFs+yxj566aUgUDfdJ/oRsE5tpX8fVPFoKQhr3ciO8MGGnwUybPlPWDTZitRLm4yK/cZuWsnsvKmGHaQnUYujsMnjALvFf6AUA2pr6jdTmCqk47N60HU00+47Tc/n2K0+DSF/11LVl3o2GERNHaxLjpfA1+hA/8pulUVVw6P8dEIIGs51s+oSsnlvMyMTPYsvd51Xx1SvXdWaj88e+DTHL5DHpI9o2l14jnj/naYmZX3xzOs7fkCFvtFKKDEKsfspwRHPRfLlKxD3msi6cTIx61ndx9KRDowk8KGZ1m/fD6bTHoHp/Vq/p0ama9uxoVM4POj5HcXqdn5rYfKwGNaXAX2+7en5vXifEIw1CEL2i73hvzRZwmLLFuHsVA+bL19h9QKzCTdmmJwT6FqVhRbMDNX2ouOwztA6pTx4x3TfaKun8OvJ/52ruXas6tHgzJ0106S5cLWgjqe1Z+e1WhJFzb6yopZYfLUEANnVSP1MoOuBxZeY7xo49rHaM7ZN7h3p47SiUdnCHpfC104PD8dHrJpqsPx7VRtLw+G12s1IMZcN75W0eGTCB5LYbUm6
zkgMF46elAERGnSSoXY1LQRi3FTtmjTnCPw1L2XAurpefz2qLLJT2AOIrR6RxIczEnScYKyvTVkpgxYw95ObTgRszjrtLf6D/LSj6qw0LGqyhb6F3rmeW2ebtVi6995L/6gSJkc1xjwabA9xsmXADXu24Z8FF76o3PlUjJ/gf+7azhinZ8YYsxHBXRLkmpmLeq4WVSDDpry8kLKDM4vlbDvb3e7lPzLhc+wx+CZapovc2AHNbdRBEoYehDOZTeFjK4NM+cp8YrcXsvS3bldy1g7q3TYNlfke1FfM5ZGOqk7b4Ttbp3fgwn6dSAHF/jbEQcw3fAar5ViFYMPeLEe8nntVCYxp1HvyeZMXOf+6xgOnbdKSxeqxJL71DisCUGPSGpxFpiokcJgaLg+/YKIHbrpOtcVkA3nMIk8FSu7GbAlo2mFDD9HTpMqKQik8zEpu6gP6Cw+5vplxu+aCidV7R8ajSp9LM30XiTPtHKhuZmy53qzrnXLjWwlQ+TDS/hXxIl/+9qbgHZRaaQ1IGa6wEdvd8oz94ndSSfaDXfP3uajXGxTbbrClhLKQ/SuNfh6hDdw94Un+XikXMLCyGDWxOnta7xvncejOq5XoEQlBzny6BGH2oFxHrxsD25LaVM9Kq0eLxDaCcXKIqF4T1qJA6qUBjp61pYkbSb2YLYPPYkY00Mn9Xjzp/CsZ+Hf8JOQFiKPl2aTJbVFuU4UYg/c1MDpgoESvqbbFA7zS429S1S2895md5lXY69zu5N8l961A6vIE4oGsT8ycPj50mnDXGtGRGrvXZzUikhm/uyjznCMCIj7lHaC3Tq/gG1+g3Ad2trHZnMWBhuL0feXc2vlQaeAr3twgl/szpNJ25lD6U0uPOtTmUB5xM9vU93C8kCXb7nCZxoJPT9ZD1Z5S7kZISCdigjRpVKPABE8r96LBM861ER1fSOvK+TVgglZB/uQrFRlrXBlS9+inDZguMSWaCoEPzJhg1YKHSyItfJw3mb9iydsHVXrwu6Qp7zFT1cg
QW8FVCzSIgR+pFQnsjvQ+IIZ7qarDBzeAg/3Uz+iEu38Ino9anP8ygCeUcBBaWwnysy6hCDxF/3z5Orbu4ZqbvWXCrN+n9ROfqtFVMWord9mQx6YJZkctfgNv/LDwiSc1XgYsxbFnwFtqIXmFGd5u3I3JgL9d6BtqHiPsQXTgiJmaXlL+YzIf+swaByZ5JgJeU+MVeSpEkBJL+UorqSJ8hOVpxN9VxSwv3pIz/MrTANQ6WIFw/GrRZotSq+UPMJgujTTOPq3x8vJVE7yoEcKFHUTQN6bSR61nTUd0imIlKWXYJspArzyQG1ljlsWFisdPyeY5Vnx53YEgnj5uB0SkwIbjYBpCkmythyPuPqm/AlQOkSPZYR4HhkHfapmVS1L31LGZMVJA9Dn8S3flJg3RZ7XBhq6L5Bp5htg4QGY2o2M0WcCvPOHs3t/d827mk/MRzGYDu6RclGIwlecAe/Kgkd5oTmgCE4N6SvsiYhJ2yzU/+pJsSkFNnrxACZnsynse0xhmwvXP6X+QRQEfx6s7bQgQxsRaxdZds0iAr2iZqcu9+IoEb2Lt1G9gf8WmYw+qBM/Zrt4JjVrcLu0NSYstmULTECTKZNUzwoAdxOPta1bZGOpzFoogVuAqDI6wLXabMqy8rv51wU9FDWIaDKDbRWEimUC4vTbjTORV7wgaduWbkp3ovG2W42jyUvv+NsO/ug1MdSVw1LXaiN8QuCpo+jIU0VFhOMzn01G0K5eDIGBmHaZzeWryZ641yoAEzJaQq2LleHKZjfVJzedT4aO9DkVU90Hmpmt9fIJCtzwUrhKcCyZUTlaT1ZAvns9MeZ3CVl3/MeMk64yqg+Adqn82TTmFdHHFuqOux1QMJxnRVZrr3z+V0tRxH4jsHU4KlaQbRYRPkRcMhU36SDpTfTnoFYIAY5pzeWgKQo8Lvr5q3QwXxgZr9O3XNpsb0t1joTmdm4mvlAZxk/1oB5FJXnxLC6xhtHLlaNmAPvsBgve7NglvfgemzxrVpZIwBV2oUD
mR3uPaYtUsj/WvSVovqwB9st1+xNJBrsoH/FvLpgTyGa+X0iE1GPeGVQ2qoI1EDEaVJB6Z951MqJFxN3JiwK8OE+41UyNBEMpQGgicDXBmv8YJ3Yo5r5q4KpeUJi2jxuEDdETFEM5EQRLkyDWgs22feWCzTZ41xcTAYunVdMrZ97mbeutfjzNECNZhRzgky4LCwgsWwfne56uDE80iQB3e078jockdbeqJk7551InRraudN9T00swIK1L4ohAC1EIcu3nvHgON39M2MBWM0yqBzBkcEbjiWUFJLfg==" autocomplete="off">
</form><script>

function mostrarCampoEmail() {
    document.getElementById("campoEmail").style.display = "";
    document.getElementById("gerarCertidaoForm:btnEmitirCertidaoEEnviarPorEmail").style.display = "";
    document.getElementById("campoEmail").focus();
}

function mostrarMensagem(){
    jQuery('#divMensagem').show();
    jQuery('#divFormulario').hide();
    jQuery('#divSucesso').hide();
    document.getElementById('gerarCertidaoForm:btnEmitirCertidao').style.display = 'none';
    document.getElementById('gerarCertidaoForm:btnEmitirCertidaoEEnviarPorEmail').style.display = 'none';
}

function emitirCertidao(){
    document.getElementById('gerarCertidaoForm:podeFazerDownload').value = 'false'; 
}

var emailValido = true;
function emitirCertidaoEValidaEmail(){
    let emailUsuario = document.getElementById("campoEmail").value;
    if ( isEmailValido(emailUsuario) ) {
        emailValido = true;
        document.getElementById("emailUsuario").value= emailUsuario;
        document.getElementById('gerarCertidaoForm:podeFazerDownload').value = 'false';
        
        document.getElementById("botaoEmitirEEnviar").style.display = "none";
        document.getElementById("campoEmail").style.display = "none";
        document.getElementById("gerarCertidaoForm:btnEmitirCertidaoEEnviarPorEmail").style.display = "none";
    } else {
        emailValido = false;
        return false;
    }
}

function fazerDownload(){
    var podeFazerDownload = document.getElementById('gerarCertidaoForm:podeFazerDownload').value;
    if (podeFazerDownload == 'true'){
        if ( document.getElementById("emailUsuario").value ) {
            enviaEmail();
        } else {
            jQuery('#divMensagem').hide();
            jQuery('#divFormulario').hide();
            jQuery('#divSucesso').show();                       
            window.parent.location = '/emissaoCertidao;jsessionid=aGI2zQ0sFXiFnstK5TuoXHs0NXMAnX8GdHIyGMk8.cndt-certidao-41-dhz4b?pfnc=4420796564887345';
        }
        //window.location = '?pfnc=1529215218106229';
    }
}

function enviaEmail(){
    var podeFazerDownload = document.getElementById('gerarCertidaoForm:podeFazerDownload').value;
    if (podeFazerDownload == 'true'){
        jQuery.getJSON( '/emissaoCertidao;jsessionid=aGI2zQ0sFXiFnstK5TuoXHs0NXMAnX8GdHIyGMk8.cndt-certidao-41-dhz4b?pfnc=5883232549945154', function( data ) {
            jQuery('#divMensagem').hide();
            jQuery('#divFormulario').hide();
            if ( data.success ) {
                document.getElementById("mensagemSucessoCertidaoEmitida").style.display = "none";
                document.getElementById("mensagemSucessoCertidaoEEmail").style.display = "";
                jQuery('#divSucesso').show();    
            } else {
                jQuery('#divErro').show();    
            }       
        });
    }
}

function mostrarCamposDeAudio() {
    document.getElementById("idUrlServletSoundCaptcha").href = document.getElementById("idUrlServletSoundCaptcha").href + 'pfnc=' + Math.random() + '.mp3';
    document.getElementById("audioCaptcha").style.display = "";
    document.getElementById("googleRecaptcha").style.display = "none";
    document.getElementById("gerarCertidaoForm:textoAudioCaptcha").focus();
}

function onError(e){
    consolole.log("Erro no hcaptcha", e);
}

</script></body>
long long title how many chars? lets see 123 ok more? yes 60

We have created lots of YouTube videos just so you can achieve [...]

Another post test yes yes yes or no, maybe ni? :-/

The best flat phpBB theme around. Period. Fine craftmanship and [...]

Do you need a super MOD? Well here it is. chew on this

All you need is right here. Content tag, SEO, listing, Pizza and spaghetti [...]

Lasagna on me this time ok? I got plenty of cash

this should be fantastic. but what about links,images, bbcodes etc etc? [...]

Estamos migrando para uma comunidade no Discord