私は2つ、ElementsCollections
つまりoddTableRowItems
とevenTableRowItems
:
private static ElementsCollection oddTableRowItems() {
return $$(By.className("odd"));
}
private static ElementsCollection evenTableRowItems() {
return $$(By.className("even"));
}
forループを1回だけ実行するために、2つを組み合わせたいと思います。それは行項目であり、スタイリングの目的でクラス名が異なるだけで、クラス名でしか識別できません。
これは私がそれを結合しようとした方法ですが、うまくいきません:
ElementsCollection rowElements = evenTableRowItems();
rowElements.addAll(oddTableRowItems());
私は得る:
java.lang.UnsupportedOperationException
どうすれば2を組み合わせることができElementsCollections
ますか?