-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
761 lines (694 loc) · 22.4 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
const Chrome = require('./chrome')
const debug = require('debug')('chrome')
const jsesc = require('jsesc')
const { Flow } = require('myflow')
const sleep = (ms) => new Promise(resolve => setTimeout(resolve, ms))
const fs = require('fs')
const { extname, dirname } = require('path')
const mkdirp = require('mkdirp')
class Automator extends Flow {
constructor (opts = {}) {
super()
let options = this.options = Object.assign({
show: true,
waitTimeout: 30000,
executionTimeout: 30000,
loadTimeout: 10000,
windowSize: [ 1920, 1600 ],
port: 9222
}, opts)
let flags = {
port: options.port,
chromePath: options.chromePath,
chromeFlags: opts.chromeFlags || []
}
if (!options.show) {
flags.chromeFlags.push('--headless')
}
if (options.windowSize) {
flags.chromeFlags.push('--window-size=' + options.windowSize.join(','))
}
Chrome(flags)
.then((chrome) => {
this.chrome = chrome
this.run()
})
.catch(function (e) {
console.log(e)
})
const self = this
this.cookies = {
set (key, value) {
return self.pipe(async function () {
debug('.setCookie()')
/**
* https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setCookie
*/
if (typeof key === 'string') {
key = {
name: key,
value: value,
path: '/'
}
}
/**
* 此方法成功率不高(50%)左右,故采用自行设置的方式
* return self.chrome.client.Network.setCookie(Object.assign({ url }, key))
*/
let cookies = [`${key.name}=${key.value}`]
delete key.name
delete key.value
for (let k in key) {
cookies.push(`${k}=${key[k]}`)
}
return this.evaluate_now(`document.cookie='${cookies.join('; ')}'`)
})
},
get (key) {
return self.pipe(async function () {
debug('.getCookie()')
const allCookie = (await self.chrome.client.Network.getAllCookies()).cookies
if (key == null || key === '') {
return allCookie
} else {
return (allCookie.filter((cookie) => cookie.name === key)[0] || {}).value
}
})
},
clear (keys) {
return self.pipe(async function () {
debug('.clearCookie()')
if (keys == null || keys === '') {
if (self.chrome.client.Network.canClearBrowserCookies()) {
return self.chrome.client.Network.clearBrowserCookies()
} else {
return false
}
} else {
if (typeof keys === 'string') {
keys = [ keys ]
}
if (Array.isArray(keys)) {
let url = await self.evaluate_now(() => window.location.href)
return Promise.all(
keys.map(
(key) => self.chrome.client.Network.deleteCookie({ cookieName: key, url })
)
)
} else {
return false
}
}
})
}
}
}
goto (url, { loadTimeout = this.options.loadTimeout } = {}) {
return this.pipe(async function () {
await this.chrome.client.Page.navigate({ url })
if (loadTimeout) {
return Promise.race([ this.chrome.client.Page.frameStoppedLoading(), sleep(loadTimeout) ])
} else {
return this.chrome.client.Page.frameStoppedLoading()
}
})
}
viewport (viewportWidth = 1920, viewportHeight, mobile = false) {
return this.pipe(async function () {
const { DOM, Page, Emulation } = this.chrome.client
const deviceMetrics = {
width: viewportWidth,
height: viewportHeight || (await Page.getLayoutMetrics()).contentSize.height,
deviceScaleFactor: 1,
mobile,
fitWindow: false
}
await Emulation.setDeviceMetricsOverride(deviceMetrics)
if (!viewportHeight) {
const { root: { nodeId: documentNodeId } } = await DOM.getDocument()
const { nodeId: bodyNodeId } = await DOM.querySelector({
selector: 'body',
nodeId: documentNodeId
})
const {model} = await DOM.getBoxModel({nodeId: bodyNodeId})
viewportHeight = model.height
deviceMetrics.height = viewportHeight
await Emulation.setDeviceMetricsOverride(deviceMetrics)
}
})
}
waitfn (fn, ...args) {
var timeout = this.options.waitTimeout
var self = this
return new Promise(async function (resolve) {
const startTime = Date.now()
while (Date.now() - startTime < timeout) {
await sleep(500)
var ret = await self.evaluate_now(fn, ...args)
if (ret !== false) {
break
}
}
await sleep(500)
resolve()
})
}
waitSelector (selector) {
return this.waitfn(function (selector) {
return !!window.top._chromeCurrentWindow.document.querySelector(selector)
}, selector)
}
wait (arg, timeout = 30000) {
return this.pipe(function () {
if (typeof arg === 'number') {
debug('.wait() ' + arg + 'msec')
return sleep(arg)
} else if (typeof arg === 'string') {
debug('.wait() for ' + arg + ' element' + (timeout ? ' or ' + timeout + 'msec' : ''))
return this.waitSelector(arg)
} else if (typeof arg === 'function') {
debug('.wait() for ' + arg + ' function ' + (timeout ? ' or ' + timeout + 'msec' : ''))
return this.waitfn(arg)
}
})
}
iframe (selector) {
return this.pipe(function () {
return this.evaluate_now(async function (selector) {
try {
window.top._chromeIframeStacks.push(window.top._chromeCurrentWindow.document.querySelector(selector))
window.top._chromeWindowStacks.push(window.top._chromeIframeStacks[window.top._chromeIframeStacks.length - 1].contentWindow)
} catch (e) {
console.info('goto iframe error')
}
}, selector)
})
}
parent () {
return this.pipe(function () {
return this.evaluate_now(async function (selector) {
if (window.top._chromeWindowStacks.length > 1) {
window.top._chromeIframeStacks.pop()
window.top._chromeWindowStacks.pop()
}
})
})
}
evaluate_now (fn, ...args) { // eslint-disable-line
// console.log(`Promise.resolve((${fn.toString()})(${args.map((arg) => JSON.stringify(jsesc(arg))).join()}))`)
let runner = this.chrome.client.Runtime.evaluate({
expression: `
window.top._chromeCurrentWindow = (top._chromeWindowStacks || (top._chromeWindowStacks = [window]))[top._chromeWindowStacks.length - 1];
window.top._chromeIframeStacks = window.top._chromeIframeStacks || []
Promise.resolve((${fn.toString()})(${args.map((arg) => JSON.stringify(jsesc(arg))).join()}))`,
awaitPromise: true
})
if (this.options.executionTimeout) {
runner = Promise.race([ runner, sleep(this.options.executionTimeout) ])
}
return runner.then(ret => ((ret || {}).result).value)
}
visible (selector) {
return this.pipe(async function (selector) {
debug('.visible() for ' + selector)
return this.evaluate_now(function (selector) {
var elem = window.top._chromeCurrentWindow.document.querySelector(selector)
if (elem) return (elem.offsetWidth > 0 && elem.offsetHeight > 0)
else return false
}, selector)
})
}
scrollTo (x, y) {
return this.pipe(async function () {
debug('.scrollTo()')
return this.evaluate_now(function (x, y) {
window.top._chromeCurrentWindow.scrollTo(x, y)
}, x, y)
})
}
exists (selector) {
return this.pipe(async function () {
debug('.exists() for ' + selector)
return this.evaluate_now(function (selector) {
return (window.top._chromeCurrentWindow.document.querySelector(selector) !== null)
}, selector)
})
}
focusSelector (selector) {
return this.evaluate_now(function (selector) {
window.top._chromeCurrentWindow.document.querySelector(selector).focus()
}, selector)
}
blurSelector (selector) {
return this.evaluate_now(function (selector) {
// it is possible the element has been removed from the DOM
// between the action and the call to blur the element
var element = window.top._chromeCurrentWindow.document.querySelector(selector)
if (element) {
element.blur()
}
}, selector)
}
async findPositionInWindow (obj) {
return (await this.evaluate_now(async function (obj, sleep) {
if (typeof obj === 'string') {
var expression = obj
obj = window.top._chromeCurrentWindow.document.querySelector(expression)
if (!obj) {
throw new Error('cannot find an object using expression ' + expression)
}
}
obj.scrollIntoViewIfNeeded()
let rect = obj.getBoundingClientRect()
let offsetLeft = 0
let offsetTop = 0
for (let w, i = 0; w = window.top._chromeIframeStacks[i++];) { // eslint-disable-line
let r = w.getBoundingClientRect()
offsetLeft += r.left
offsetTop += r.top
}
return [ rect.left + rect.width / 2 + offsetLeft, rect.top + rect.height / 2 + offsetTop ].join()
}, obj, sleep)) || '-1,-1'
}
_touch (client, x, y) {
const options = {
touchPoints: [{
x: x,
y: y,
state: 'touchPressed'
}]
}
options.type = 'touchStart'
client.Input.dispatchTouchEvent(options)
options.touchPoints[0].state = 'touchReleased'
options.type = 'touchEnd'
client.Input.dispatchTouchEvent(options)
}
_click (client, x, y) {
const options = {
x: x,
y: y,
button: 'left',
clickCount: 1
}
options.type = 'mousePressed'
client.Input.dispatchMouseEvent(options)
options.type = 'mouseReleased'
client.Input.dispatchMouseEvent(options)
}
async sendKey (char) {
await this.chrome.client.Input.dispatchKeyEvent({
'modifiers': 0,
'nativeVirtualKeyCode': 55,
'text': '',
'type': 'rawKeyDown',
'unmodifiedText': '',
'windowsVirtualKeyCode': 55
})
await this.chrome.client.Input.dispatchKeyEvent({
'modifiers': 0,
'nativeVirtualKeyCode': 0,
'text': char,
'type': 'char',
'unmodifiedText': char,
'isKeypad': true,
'windowsVirtualKeyCode': 0
})
await this.chrome.client.Input.dispatchKeyEvent({
'modifiers': 0,
'nativeVirtualKeyCode': 55,
'text': '',
'type': 'keyUp',
'unmodifiedText': '',
'windowsVirtualKeyCode': 55
})
}
type (selector, text) {
return this.pipe(async function () {
debug('.type() %s into %s', text, selector)
await this.waitSelector(selector)
await this._clickSelector(selector)
if ((text || '') === '') {
await this.evaluate_now(async function (selector) {
window.top._chromeCurrentWindow.document.querySelector(selector).value = ''
}, selector)
} else {
await this.evaluate_now(async function (selector, text) {
window.top._chromeCurrentWindow.document.querySelector(selector).value = text
}, selector, text)
}
await this.blurSelector(selector)
})
}
insert (selector, string) {
return this.pipe(async function () {
if (string == null) {
string = selector
} else if (selector != null) {
await this.waitSelector(selector)
await this._clickSelector(selector)
}
if (string == null) {
return
}
for (let i of string) {
await this.sendKey(i)
}
})
}
async _clickSelector (selector) {
let [ left, top ] = (await this.findPositionInWindow(selector)).split(',').map(i => parseInt(i, 10))
debug(`left: ${left}, top: ${top}`)
this._click(this.chrome.client, left, top)
}
mousedown (selector) {
return this.pipe(function () {
debug('.mousedown() on ' + selector)
return this.evaluate_now(async function (selector) {
var element = window.top._chromeCurrentWindow.document.querySelector(selector)
if (!element) {
throw new Error('Unable to find element by selector: ' + selector)
}
var event = window.top._chromeCurrentWindow.document.createEvent('MouseEvent')
event.initEvent('mousedown', true, true)
element.dispatchEvent(event)
}, selector)
})
}
mouseup (selector) {
return this.pipe(function () {
debug('.mouseup() on ' + selector)
return this.evaluate_now(async function (selector) {
var element = window.top._chromeCurrentWindow.document.querySelector(selector)
if (!element) {
throw new Error('Unable to find element by selector: ' + selector)
}
var event = window.top._chromeCurrentWindow.document.createEvent('MouseEvent')
event.initEvent('mouseup', true, true)
element.dispatchEvent(event)
}, selector)
})
}
mouseover (selector) {
return this.pipe(function () {
debug('.mouseover() on ' + selector)
return this.evaluate_now(async function (selector) {
var element = window.top._chromeCurrentWindow.document.querySelector(selector)
if (!element) {
throw new Error('Unable to find element by selector: ' + selector)
}
var event = window.top._chromeCurrentWindow.document.createEvent('MouseEvent')
event.initMouseEvent('mouseover', true, true)
element.dispatchEvent(event)
}, selector)
})
}
check (selector) {
return this.pipe(function () {
debug('.check() ' + selector)
return this.evaluate_now(async function (selector) {
var element = window.top._chromeCurrentWindow.document.querySelector(selector)
var event = window.top._chromeCurrentWindow.document.createEvent('HTMLEvents')
element.checked = true
event.initEvent('change', true, true)
element.dispatchEvent(event)
}, selector)
})
}
uncheck (selector) {
return this.pipe(function () {
debug('.uncheck() ' + selector)
return this.evaluate_now(async function (selector) {
var element = window.top._chromeCurrentWindow.document.querySelector(selector)
var event = window.top._chromeCurrentWindow.document.createEvent('HTMLEvents')
element.checked = null
event.initEvent('change', true, true)
element.dispatchEvent(event)
}, selector)
})
}
select (selector, option) {
return this.pipe(function () {
debug('.select() ' + selector)
return this.evaluate_now(async function (selector, option) {
var element = window.top._chromeCurrentWindow.document.querySelector(selector)
var event = window.top._chromeCurrentWindow.document.createEvent('HTMLEvents')
element.value = option
event.initEvent('change', true, true)
element.dispatchEvent(event)
}, selector, option)
})
}
back () {
return this.pipe(function () {
debug('.back()')
return this.evaluate_now(async function () {
window.top._chromeCurrentWindow.history.back()
})
})
}
forward () {
return this.pipe(function () {
debug('.forward()')
return this.evaluate_now(async function () {
window.top._chromeCurrentWindow.history.forward()
})
})
}
refresh () {
return this.pipe(function () {
debug('.refresh()')
return this.evaluate_now(async function () {
window.top._chromeCurrentWindow.location.reload()
})
})
}
url () {
return this.pipe(async function () {
debug('.url()')
return this.evaluate_now(async function () {
return window.location.href
})
})
}
click (selector) {
return this.pipe(async function () {
debug('.click() ' + selector)
await this.waitSelector(selector)
return this._clickSelector(selector)
})
}
title () {
return this.pipe(async function () {
debug('.title()')
return this.evaluate_now(async function () {
return window.top._chromeCurrentWindow.document.title
})
})
}
_writeFile (data, path, isBase64 = true) {
return new Promise((resolve, reject) => {
mkdirp.sync(dirname(path))
fs.writeFile(path, isBase64 ? Buffer.from(data, 'base64') : data, (err, ret) => {
if (err) {
reject(err)
} else {
resolve(ret)
}
})
})
}
useragent (userAgent) {
return this.pipe(async function () {
debug('.useragent()')
return this.chrome.client.Network.setUserAgentOverride({ userAgent })
})
}
html (path) {
return this.pipe(async function () {
debug('.html()')
const html = await this.evaluate_now(async function () {
return new window.XMLSerializer().serializeToString(document.doctype) + '\n' + document.documentElement.outerHTML
})
if (path) {
return this._writeFile(html, path, false)
} else {
return html
}
})
}
pdf (path, options = {}) {
return this.pipe(async function () {
debug('.pdf()')
try {
/**
* https://github.com/cyrus-and/chrome-remote-interface/issues/202
*/
const pdf = await this.chrome.client.Page.printToPDF(Object.assign({
landscape: true,
printBackground: false,
marginTop: 4,
marginBottom: 1,
marginLeft: 0,
marginRight: 0,
paperWidth: 8.2677165, // A4 paper size
paperHeight: 11.6929134 // A4 paper size,
}, options))
return this._writeFile(pdf.data, path)
} catch (e) {
debug('pdf() only support in headless mode')
}
})
}
screenshot (path, clip) {
return this.pipe(async function () {
let ext = path == null ? '.jpg' : extname(path)
debug('.screenshot()')
let image = await this.chrome.client.Page.captureScreenshot({
format: ext === '.jpg' ? 'jpeg' : 'png',
fromSurface: true,
clip: clip,
quality: 80
})
return path == null ? image.data : this._writeFile(image.data, path)
})
}
path () {
return this.pipe(async function () {
debug('.path()')
return this.evaluate_now(function () {
return window.location.pathname
})
})
}
end () {
return this.pipe(async function (ret) {
debug('.end()')
this.chrome.host.kill()
return ret
})
}
evaluate (fn, ...args) {
return this.pipe(async function () {
return this.evaluate_now(fn, ...args)
})
}
_inject (type, content) {
if (type === 'css') {
content = 'document.body.appendChild(document.createElement("style")).innerHTML = `' + content + '`'
}
return this.evaluate_now(content)
}
inject (type, file) {
return this.pipe(async function () {
debug('.inject()-ing a file')
if (type === 'js' || type === 'css') {
return this._inject(type, fs.readFileSync(file, { encoding: 'utf-8' }))
} else {
debug('unsupported file type in .inject()')
}
})
}
on (type, fn, { detach = true } = {}) {
return this.pipe(function () {
let self = this
let promise = new Promise((resolve, reject) => {
let nfn = async function () {
try {
let result = (await fn.apply(self, arguments)) || {}
if (result.canceled === true) {
self.chrome.client.removeListener(type, nfn)
resolve(result)
}
} catch (e) {
return reject(e)
}
}
this.chrome.client.on(type, nfn)
})
if (!detach) {
return promise
}
})
}
off (type, fn) {
return this.pipe(async function () {
return this.chrome.client.removeListener(type, fn)
})
}
once (type, fn) {
return this.pipe(async function () {
let self = this
return new Promise((resolve, reject) => {
this.chrome.client.once(type, async function () {
try {
resolve(await fn.apply(self, arguments))
} catch (e) {
reject(e)
}
})
})
})
}
setExtraHTTPHeaders (params) {
return this.pipe(async function () {
debug('.setExtraHTTPHeaders()')
return this.chrome.client.Network.setExtraHTTPHeaders(params)
})
}
ignoreSWCache (trueOrFalse = true) {
return this.pipe(function () {
debug('.ignoreSWCache()')
return this.chrome.client.Network.setBypassServiceWorker({
bypass: trueOrFalse
})
})
}
authentication (username, password) {
return this.pipe(async function () {
debug('.authentication()')
/**
* https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-AuthChallengeResponse
*/
return this.chrome.client.Network.AuthChallengeResponse({
username,
password
})
})
}
then (fn) {
return new Promise((resolve) => {
this.pipe(function () {
resolve(fn.apply(this, arguments))
})
})
}
halt () {
return this.pipe(function () {
this.tasks.splice(0, this.tasks.length)
return this.chrome.host.kill()
})
}
catch () {
console.log('Please use try catch to catch error!!!')
}
}
function $ (opts) {
if (!(this.constructor instanceof Automator)) {
return new Automator(opts)
} else {
return this
}
}
$.action = function (name, fn, ...args) {
if (name in Automator) {
throw new Error(`${name} has defined`)
}
Automator.prototype[name] = function (..._args) {
return this.pipe(function (...__args) {
return fn.apply(this, [...args, ..._args, ...__args])
})
}
}
$.Automator = Automator
module.exports = $