browser icon indicating copy to clipboard operation
browser copied to clipboard

Allow assertSeeIn() selector to be array or string

Open kbond opened this issue 4 years ago • 0 comments

$browser
    ->assertSeeIn('title', 'Post Title')
    ->assertSeeIn('h1', 'Post Title')
;

Could become:

$browser
    ->assertSeeIn(['title', 'h1'], 'Post Title')
;

kbond avatar Dec 31 '20 02:12 kbond