ドキュメント内の要素を制御する方法を探しています。問題は、ドキュメントが iFrame に添付されていることです。
次に例を示します。
.goto('https://wirecard-sandbox-engine.thesolution.com/engine/hpp/')
.use(iframe.withFrameName('wc', function (nightmare) {
nightmare
.type('#account_number', accountNumber)
.screenshot(resultfolder + '\\06-Card-Number.png')
.type('#card_security_code', testData.securityCode)
.selectIndex('#expiration_month_list', 1)
.selectIndex('#expiration_year_list', 4)
.click('span[id="hpp-form-submit"]')
}))
私が上でやろうとしていることは次のとおりです。
- URL で iFrame を取得します。
- これを使用して、iFrame のすべての要素のコントロールを取得します。