Hey, atm I do not want to test Stripe integration. I just want to submit a Stripe form, skip testing if Stripe works and countinue from where form redirects. something like this:
$this->press('stripe form button') //stripe form has no button
->seePageIs('x')
->see('Finish')
->click('Finish');
Can you explain why "the Stripe form has no button"? If your form doesn't have a submit button, how is it meant to be used?
You're not giving enough information here.
Is the problem that Stripe relies on javascript to intercept the default form submission? That's why you need a testing tool that can handle javascript. Which I have already suggested...