我有以下有趣的场景:
测试系统,在我的例子中,ActiveMerchant 的 BogusGateway 需要“伪造”类型的信用卡才能有效。当然,这不是我提供给用户的选项之一。
在我的请求规范中,我试图用“虚假”覆盖签证的原始值,但我不清楚它是如何完成的。我尝试过类似的方法,但没有运气:
# setting the value for the visa card to be 'bogus'
find(:xpath, "//input[@id='billing_account_card_type_visa']").set "bogus"
# then clicking on the radio button...
choose "billing_account_card_type_visa"
任何帮助将不胜感激。