/var/www/vhosts/nabawater/vendor/codeception/base/src/Codeception/Lib/Interfaces
Edit: /var/www/vhosts/nabawater/vendor/codeception/base/src/Codeception/Lib/Interfaces/ElementLocator.php (1003B)
getModule('{{MODULE_NAME}}')->_findElements('.items');
* $els = $this->getModule('{{MODULE_NAME}}')->_findElements(['name' => 'username']);
*
* $editLinks = $this->getModule('{{MODULE_NAME}}')->_findElements(['link' => 'Edit']);
* // now you can iterate over $editLinks and check that all them have valid hrefs
* ```
*
* WebDriver module returns `Facebook\WebDriver\Remote\RemoteWebElement` instances
* PhpBrowser and Framework modules return `Symfony\Component\DomCrawler\Crawler` instances
*
* @api
* @param $locator
* @return array of interactive elements
*/
public function _findElements($locator);
}