0
我想從selenium 2的下拉菜單中選擇一個項目,並結合phpunit。我使用的類是PHPUnit_Extensions_Selenium2TestCase。我知道在硒1它是:select index selenium 2 php
$this->select("id=dt-general-input", "index=3");
但如何將此轉換爲硒2?要選擇你要做的元素:
$ this-> select($ this-> byId(「dt-general-input」));
但我該如何選擇第三個索引?此選擇沒有(文本)標記的選項。所以我不能使用$this->select($this->byId("dt-general-input"))->selectOptionByValue(3);
感謝您的指針。方法options()對於Selenium 2來說似乎不可用。但是我可以使用selectOptionLabels()和selectOptionValues()來代替。 – user3379159