Search code examples
phplaravellaravel-dusk

How to click link icon with laravel dusk?


If I have a link:

<a href="/somewhere">Click Me</a>

I know I can clickLink based on its text.

public function testCanClickLink()
{
    $this->browse(function ($browser) {
        $browser->visit('/welcome')
                ->clickLink('Click Me');
    });
}

But how can I click an icon link?

<a href="/somewhere">
    <i class="fa fa-plus" aria-hidden="true"></i>
</a>

Solution

  • You can target the href like this:

    ->click('a[href="/somewhere"]')