i have this FollowingCept for my functional testing in codeception where a user can click a Follow button then redirect back to the same url.
this is the partial view.
{{ Form::open(['route' => 'follows_path','method' => 'post']) }}
{{ Form::hidden('userIdToFollow',$user->id,['id' => $user->id]) }}
<button type="submit" class="btn btn-primary">Folllow</button>
{{ Form::close() }}
this is the function i used we usualy used.
$I->click('Follow');
this is the error i get.
the error message says input[type="submit"] but the element in your view is a button, try replace it by an input
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community