-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
90 lines (75 loc) · 2.35 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
const {
openBrowser,
goto,
$,
click,
write,
into,
textBox,
near,
radioButton,
dropDown,
waitFor,
closeBrowser
} = require("taiko");
const prompts = require("prompts");
const user = require("./user.json");
async function main() {
let { url } = await askForEventUrl();
await performSubscribe(url, user);
async function performSubscribe(url, user) {
try {
console.log("Abrindo link");
await openBrowser({ headless: false });
await goto(url);
//
console.log("Selecionando inscrição");
await click($(".icon-plus-circle.opt"));
await click("Continuar");
await waitFor(async () => await $("#registration-form").exists());
console.log("Preenchendo o form");
await write(user.name, into(textBox(near("Nome"))));
await write(user.last_name, into(textBox(near("Sobrenome"))));
await write(user.email, into(textBox(near("E-mail"))));
await radioButton(
user.has_attended,
near("Já participou de outras edições do Impulso Meetups?", {
offset: 100
})
).select();
await write(user.role, into(textBox(near("Ocupação"))));
await write(
user.impulser_id,
into(textBox(near("iD de usuário na comunidade Impulso")))
);
await write(user.company, into(textBox(near("Empresa / Instituição"))));
await dropDown(near("Nível de senioridade")).select(user.level);
await write(user.city, into(textBox(near("Cidade"))));
await write(user.uf, into(textBox(near("UF"))));
await radioButton(
user.gender,
near("Identidade de Gênero", { offset: 100 })
).select();
console.log("Preenche confirmação");
await dropDown(near("Copiar informações")).select("Inscrição nº 1");
await write(user.email, into(textBox(near("Confirmação do e-mail"))));
console.log("Inscrevendo-se");
await click("Finalizar");
console.log("Aguardando confirmação");
await waitFor(async () => await $(".success-title").exists());
} catch (error) {
console.error(error);
} finally {
console.log("Done!");
await closeBrowser();
}
}
async function askForEventUrl() {
return await prompts({
type: "text",
name: "url",
message: "Qual o evento que você quer participar?"
});
}
}
main();