webdriver 选择下拉列表的操作
2020-11-27 13:40
标签:style blog http c width 2014 欢迎光临娇娇家的美衣阁 http://shop105984718.taobao.com/ 标准的下拉列表为select类型 封装方法 public void select(String xpath, String value){ 操作页面如下所示 参考: http://jarvi.iteye.com/blog/1450883 欢迎光临娇娇家的美衣阁 http://shop105984718.taobao.com/ webdriver 选择下拉列表的操作,搜素材,soscw.com webdriver 选择下拉列表的操作 标签:style blog http c width 2014 原文地址:http://www.cnblogs.com/joewu/p/3708465.html
Select
s = new Select(driver.findElement(By.xpath(xpath)));
s.selectByValue(value);
}
select("//select[@id=‘parkind_add_shopGoodsParkinds_cParkindtype‘]","0");
//普通参数
select("//select[@id=‘parkind_add_shopGoodsParkinds_cParkindtype‘]","1");
//筛选参数
文章标题:webdriver 选择下拉列表的操作
文章链接:http://soscw.com/index.php/essay/22910.html