I\'ve hit the wall trying to write an integration test for Stripe\'s checkout.js [ https://checkout.stripe.com/checkout.js ] for my Rails 3.2 app.
Stripe checkout wo
For capybara-webkit, I was able to get this to work:
stripe_iframe = page.driver.window_handles.last page.within_window stripe_iframe do fill_in "email", with: "test-user@example.com" ... end