public function WebAssert::elementsCount in Drupal 10
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/WebAssert.php \Drupal\Tests\WebAssert::elementsCount()
File
- core/
tests/ Drupal/ Tests/ WebAssert.php, line 882
Class
- WebAssert
- Defines a class with methods for asserting presence of elements during tests.
Namespace
Drupal\TestsCode
public function elementsCount($selectorType, $selector, $count, ElementInterface $container = NULL) {
assert(func_num_args() <= 4);
return parent::elementsCount($selectorType, $selector, $count, $container);
}