硒。 Xpath。通过单词数组查找元素

时间:2018-10-22 13:30:04

标签: php laravel selenium-webdriver xpath selenium-chromedriver

目前,我需要从某个数组中查找至少包含一个或多个单词的元素。

这是我拥有的代码:

collect(['some', 'words'])->each(function ($word) {
    $found = $this->driver->findElements(
        WebDriverBy::xpath("//div[contains(text(), '$word')]")
    );
});

是否可以使用一个findElements()调用使其传递并在那里传递数组?

0 个答案:

没有答案