-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform-submitter.js
86 lines (42 loc) · 1.8 KB
/
form-submitter.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
// reddit-scraper.js
const cheerio = require('cheerio');
const puppeteer = require('puppeteer');
const {Cluster} = require('puppeteer-cluster');
const XLSX = require('xlsx');
const fs = require('fs');
(async () => {
const cluster = await Cluster.launch({
concurrency: Cluster.CONCURRENCY_CONTEXT,
maxConcurrency: 4,
puppeteerOptions: {
headless: false,
timeout : 0
},
retryLimit : 4,
workerCreationDelay: 1000,
monitor: true,
timeout : 500000
});
cluster.queue('https://ejadmin.codenurture.com/public/login.php');
cluster.queue('https://ejadmin.codenurture.com/public/login.php');
cluster.queue('https://ejadmin.codenurture.com/public/login.php');
cluster.queue('https://ejadmin.codenurture.com/public/login.php');
try {
await cluster.task ( async({page, data: url }) => {
await page.setDefaultNavigationTimeout(0);
await page.goto(url);
await page.type('[name="username"]','admin');
await page.type('[name="password"]','M123456');
await page.click('.c-btn');
await page.waitForNavigation();
await page.goto('http://ejadmin.codenurture.com/public/product-form.php');
await page.waitForNavigation();
//get the web page content
});
await cluster.idle();
await cluster.close();
}
catch(err){
console.log(err);
}
})();