According to the docs findElements() should return an empty array when no elements are found, but i get a WebDriverCurlException when running this snippet :
$element = \WebDriverBy::cssSelector("#not_exists tr > td:first-child");
$found = $webDriver->findElements($element);
According to the docs
findElements()should return an empty array when no elements are found, but i get aWebDriverCurlExceptionwhen running this snippet :