1 つの URL を読み込んでから、選択メニューからすべての項目を選択して、複数の銀行取引明細書をダウンロードしようとしています。
ここのガイドに従って、reduce を使用してループします。
部分的なコード:
const statementOptions = [
'1:accepted:1',
'3:accepted:3',
'4:accepted:4',
...
]
nightmare.goto('https://www.homesavings.com')
//login
.viewport(900, 800)
.wait('form[name="Login"]')
.insert('#userid', config.userid)
.insert('#password', config.password)
.click('#submit input')
// go to Online Statements page
.wait('a[data-app-code="Online Statements"]')
.goto('https://www.hslonline2.com/onlineserv/HB/OnlineStatements.cgi')
.evaluate(statementOptions => statementOptions, statementOptions)
.then(statementOptions => {
return statementOptions.reduce(function(acc, option, index) {
console.log(`reduce it: option=${option} index=${index}`)
return acc.then(function(results) {
return nightmare
// wait for the account select box to load..
.wait('select[name="acctRef"]')
.select('select[name="acctRef"]', option)
//.wait(1000)
.click('input[type="submit"]')
//.wait(2000)
.wait('td a img')
.click('td a')
.download(`${downloadDir}/bankPDF_${index}`)
.then(info => {
console.log(`after download. info -> ${JSON.stringify(info, null, 2)}`)
results.push(info)
return results
})
})
}, Promise.resolve([])).then(infos => infos)
})
これを実行すると、tmp フォルダーに 1 つのファイルがあり、最初に選択したオプションに対応します。
また、ファイル名は bankPDF_0 です。
そのため、reduce コールバック内にあるにもかかわらず、オプションとインデックスはネストされたナイトメア セクション内で反復されていません...
コンソール出力の一部を次に示します。
nightmare:actions .evaluate() fn on the page +3ms
reduce it: option=1:accepted:1 index=0
reduce it: option=3:accepted:3 index=1
reduce it: option=4:accepted:4 index=2
nightmare:actions .wait() for select[name="acctRef"] element +3ms
nightmare:actions .select() select[name="acctRef"] +4ms
nightmare:actions .click() on input[type="submit"] +2ms
nightmare:actions .wait() for td a img element +4ms
nightmare:actions .click() on td a +7s
after download. info => {
"filename": "ImageRequestor.pdf",
"mimetype": "application/pdf",
"receivedBytes": 172446,
"totalBytes": 172446,
"path": "/Users/cdock/Desktop/bank-statements/tmp/bankPDF_0",
"state": "completed"
}
nightmare:actions .wait() for select[name="acctRef"] element +2s
nightmare:actions .select() select[name="acctRef"] +1ms
nightmare:actions .click() on input[type="submit"] +1ms
nightmare:actions .wait() for td a img element +7s
nightmare:actions .click() on td a +2ms
after download. info => {
"filename": "ImageRequestor.pdf",
"mimetype": "application/pdf",
"receivedBytes": 172446,
"totalBytes": 172446,
"path": "/Users/cdock/Desktop/bank-statements/tmp/bankPDF_0",
"state": "completed"
}
nightmare:actions .wait() for select[name="acctRef"] element +1s
nightmare:actions .select() select[name="acctRef"] +1ms
nightmare:actions .click() on input[type="submit"] +1ms
nightmare:actions .wait() for td a img element +6s
nightmare:actions .click() on td a +2ms
after download. info => {
"filename": "ImageRequestor.pdf",
"mimetype": "application/pdf",
"receivedBytes": 172446,
"totalBytes": 172446,
"path": "/Users/cdock/Desktop/bank-statements/tmp/bankPDF_0",
"state": "completed"
}
reduce / promises を使用してループするのに間違っていることは何ですか?