-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
61 lines (47 loc) · 2 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
const puppeteer = require('puppeteer');
// const download = require('image-downloader');
(async() => {
//open file
var lineReader = require('readline').createInterface({
input: require('fs').createReadStream('data.in')
});
lineReader.on('line', function(line) {
console.log('Line from file:', line);
});
//open browser
const browser = await puppeteer.launch({ headless: false });
const page = await browser.newPage();
page.setViewport({ width: 1280, height: 720 });
const url = 'http://tracuunnt.gdt.gov.vn/tcnnt/mstcn.jsp';
await page.goto(url);
console.log('Page loaded');
await page.waitFor('#module3Content > div > form > table > tbody > tr:nth-child(2) > td:nth-child(2) > input[type="text"]');
let mst = ['12345678', '87654321'];
let close = false;
for (let j = 0; j <= mst.length; j++) {
await page.type('#module3Content > div > form > table > tbody > tr:nth-child(2) > td:nth-child(2) > input[type="text"]', "");
await page.type('#module3Content > div > form > table > tbody > tr:nth-child(2) > td:nth-child(2) > input[type="text"]', mst[j]);
var i = 1;
while (await page.evaluate(() => { return document.querySelector('#captcha').value; }) != null) {
t = await page.evaluate(() => { return document.querySelector('#captcha').value; });
console.log('Please fill captcha in 15s. if not, the browser will close in 15 seconds!');
i++;
if (t.length >= 5) {
close = false;
break;
}
if (i > 7000) {
close = true;
if (t.length >= 5)
close = false;
break;
}
}
if (close === false) {
await page.click('#module3Content > div > form > table > tbody > tr:nth-child(7) > td:nth-child(2) > div > input.subBtn');
await page.reload();
} else {
await browser.close();
}
}
})();