目前,我需要从某个数组中查找至少包含一个或多个单词的元素。
这是我拥有的代码:
collect(['some', 'words'])->each(function ($word) {
$found = $this->driver->findElements(
WebDriverBy::xpath("//div[contains(text(), '$word')]")
);
});
是否可以使用一个findElements()
调用使其传递并在那里传递数组?