selenium webdriver + java 下拉框处理
对下拉框进行处理时,需要使用selenium封装的方法:Select list = new Select(locator);需要new一个select的类,通过select类的方法进行具体的元素定位。具体的方法如下:第一大类方法:选择对应的元素:1. Text(downlist.selectByVisibleText(“学生”)) ...