Support the ongoing development of Laravel.io →
posted 10 years ago
Testing

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.

  1. Failed to follow a larabook member in FollowingCept (/home/vagrant/code/larabook/tests/functional/FollowingCept.php) Couldn't click "Follow","input[type="submit"]": Link or Button by name or CSS or XPath 'Follow' was not found on page.
Last updated 2 years ago.
0

the error message says input[type="submit"] but the element in your view is a button, try replace it by an input

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.