页面工厂模式和下拉列表

时间:2015-01-19 18:45:27

标签: java drop-down-menu selenium-webdriver pageobjects findby

我是硒的新手。

我需要一些帮助才能做到这一点。

如何使用页面工厂模式选择下拉列表

我尝试过的代码无效

我收到错误说明预期注释名称

@FindBy(how=How.ID,using="ccompound")    
public WebElement Select_Compound;
Select dropDownBox = new Select(Select_Compound);
dropDownBox.selectByVisibleText("monthly")

谢谢

1 个答案:

答案 0 :(得分:2)

将最后2个语句移动到测试方法。这就是你得到语法错误的原因。

Select dropDownBox = new Select(Select_Compound);
dropDownBox.selectByVisibleText("monthly");

最后一个语句不能存在于方法之外。