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>
 
     
    