Integrated
Integrated copied to clipboard
Solution for multiple forms on one page
I had some problems with multiple forms on one page. I have created a trait to solve this problem https://gist.github.com/jildertmiedema/f028f531d6a823890ea5
If other people like this future can be added to the package.
Example code:
$this
->type('name', 'name')
->pressByContext('Send', '.form-1');
//send to target 2
$this
->type('name', 'name')
->pressByContext('Send', '.form-2');