如何在柏树中获取条纹元素
How to get stripe element in cypress
我想用 stripe-payments 在 Ionic 上为 web-application 编写 end-to-end 测试,但在条纹 iframe 字段中输入卡号时遇到问题。
我检查了 Testing Stripe Elements with Cypress 以了解如何执行此操作,但它不起作用。
我有这样的结构 HTML:
我的结构截图:
你知道怎么做吗?
cypress-plugin-stripe-elements 插件应该可以工作:
This plugin provides a fillElementsInput
that makes it easy to fill out Stripe Elements inputs without cy.wait()
hacks or anything else.
cy.fillElementsInput('cardNumber', '4242424242424242');
我想用 stripe-payments 在 Ionic 上为 web-application 编写 end-to-end 测试,但在条纹 iframe 字段中输入卡号时遇到问题。
我检查了 Testing Stripe Elements with Cypress 以了解如何执行此操作,但它不起作用。
我有这样的结构 HTML:
我的结构截图:
你知道怎么做吗?
cypress-plugin-stripe-elements 插件应该可以工作:
This plugin provides a
fillElementsInput
that makes it easy to fill out Stripe Elements inputs withoutcy.wait()
hacks or anything else.cy.fillElementsInput('cardNumber', '4242424242424242');