Select:针对 <select>
元素进行的操作
selectByIndex(index)
// 找到该 <select> 元素 we
WebElement we = driver.findElement(by, selector);
// 使用该元素,实例化一个 Select 类的对象 s
Select s = new Select(we);
s.selectByValue(value);
// 或者用index
s.selectByIndex(value)
鼠标事件,有关鼠标的操作,不只是单击,有时候还要做右击、双击、拖动等操作。这些操作包含在ActionChains类中。
原文转自:http://gitbook.cn/books/58e54b57cfcd6fa52dcef1d2/index.html