Last active
September 1, 2023 13:32
-
-
Save cejaramillof/f1102074e2c49671361a19543dec2a64 to your computer and use it in GitHub Desktop.
Bookmark: Completar campos solicitar Pasaporte Antioquia
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Realizar pago | |
// https://sedeelectronica.antioquia.gov.co/pasaporte/user/pago/ | |
javascript: (function () { | |
document.getElementById("tipo_ide").value = "CC"; | |
document.getElementsByName("data[tipo_ide]").value = "CC"; | |
document.getElementById("num_ide").value = "cedula"; /* "00.000.000" */ | |
document.getElementById("num_ide_confirm").value = "cedula"; /* "00.000.000" */ | |
document.getElementById("nombre").value = "nombres"; | |
document.getElementById("apellido").value = "apellidos"; | |
document.getElementById("mobile").value = "cel"; | |
document.getElementById("email").value = "correo"; | |
document.getElementById("email_confirm").value = "correo"; | |
document.getElementsByName("data[opc]").value = "5c5a446a15ab22a64d531d80704d4d88d5928a0a"; /* ordinario */ | |
document.getElementById("acepto").checked = true; | |
})(); | |
// Agendar cita | |
// https://sedeelectronica.antioquia.gov.co/pasaporte/user/createAppointment/ | |
javascript: (function () { | |
document.getElementById("num_ide").value = "cedula"; | |
document.getElementById("fecha_pago").value = "fecha_pago"; /* 'DD/MM/AAAA' */ | |
document.getElementById("tipo_solic").value = 1; /* 1 Pasaporte por primera vez - 2 Pasaporte por renovación - 5 Pasaporte para menores de edad */ | |
document.getElementById("num_tel").value = "cel"; | |
document.getElementById("correo").value = "correo"; | |
document.getElementById("correo_ok").value = "correo"; | |
document.getElementById("acepto").checked = true; | |
location.href = "#correo_ok"; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment