Integrated icon indicating copy to clipboard operation
Integrated copied to clipboard

Solution for multiple forms on one page

Open jildertmiedema opened this issue 10 years ago • 0 comments

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');

jildertmiedema avatar Jun 02 '15 10:06 jildertmiedema