python -m SimpleHTTPServer 8080
This file contains 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
const timeBetweenClicks = 4000; | |
const textContent_ofConfirmButton = "Confirmar"; // TODO: Change for your language | |
function getElementByXpath(path) { | |
return document.evaluate( | |
path, | |
document, | |
null, | |
XPathResult.FIRST_ORDERED_NODE_TYPE, | |
null |
This file contains 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"; |
This file contains 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
# -*- coding: utf8 -*- | |
import time | |
import json | |
import random | |
import platform | |
from datetime import datetime | |
import requests | |
from selenium import webdriver |
This file contains 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
(* | |
Quick and simple Apple Script to listen to | |
freeCodeCamp.org's Code Radio using QuickTime Player on macOS. | |
Check out the web player here: | |
https://coderadio.freecodecamp.org | |
Josh Brown <[email protected]> | |