function AbstractBrowser::clickLink
Clicks the first link (or clickable image) that contains the given text.
Parameters
string $linkText The text of the link or the alt attribute of the clickable image:
array $serverParameters An array of server parameters:
File
-
vendor/
symfony/ browser-kit/ AbstractBrowser.php, line 281
Class
- AbstractBrowser
- Simulates a browser.
Namespace
Symfony\Component\BrowserKitCode
public function clickLink(string $linkText, array $serverParameters = []) : Crawler {
$crawler = $this->crawler ?? throw new BadMethodCallException(\sprintf('The "request()" method must be called before "%s()".', __METHOD__));
return $this->click($crawler->selectLink($linkText)
->link(), $serverParameters);
}