Clicks link with specified locator.
string $locator link id, title, text or image alt:
void
ElementNotFoundException
public function clickLink(string $locator) { $link = $this->findLink($locator); if (null === $link) { throw new ElementNotFoundException($this->getDriver(), 'link', 'id|title|alt|text', $locator); } $link->click(); }