在 PHPUnit Selenium 2 测试用例中,通过指定其类来选择元素很简单:
$element = $this->byClassName("my_class");
但是,即使有 的两项my_class
,选择器也只会选择其中一项(可能是第一项)。我怎样才能选择所有这些?我将不胜感激allByClassName
:
$elements = $this->allByClassName("my_class");
foreach($elements as $element) {
doSomethingWith($element);
}
allByClassName
PHPUnit Selenium 2 扩展中有类似的东西吗?