我正在寻找一种方法来控制文档中的元素。问题是,文档附加到 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 中的每个元素。