-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.js
42 lines (38 loc) · 1.26 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
const puppeteer = require("puppeteer");
const fs = require("fs");
require("dotenv").config();
const dados = {
nome: process.env.NOME,
cpf: process.env.CPF,
telefone: process.env.TELEFONE,
email: process.env.EMAIL,
};
function describe(jsHandle) {
return jsHandle.executionContext().evaluate((obj) => {
// serialize |obj| however you want
return obj;
}, jsHandle);
}
if (dados.nome && dados.cpf && dados.telefone && dados.email) {
console.log(`Iniciando o bot para ${dados.nome}.`);
(async () => {
const browser = await puppeteer.launch({ headless: true, args: ['--no-sandbox'] });
const page = await browser.newPage();
await page.goto("https://agendamento.vitoria.es.gov.br/");
await page.evaluate(fs.readFileSync("script.js", "utf8"));
await page.evaluate((d) => {
start(d.nome, d.cpf, d.telefone, d.email, d.PRIORIDADE);
console.log("Loaded");
}, {...dados, PRIORIDADE: process.env.PRIORIDADE});
page.on("console", async (msg) => {
const args = await Promise.all(msg.args().map((arg) => describe(arg)));
if(msg.text() != args[0]) {
console.log([...args]);
} else {
console.log(msg.text());
}
});
})();
} else {
console.log(`Configure seus dados no arquivo '.env'.`);
}