• Selenium Video Tutorials

Selenium WebDriver - 下拉框



Selenium WebDriver 可以借助 Select 类来处理网页上的下拉框。网页上可能有两种下拉框 - 单选(选择一个选项)和多选(选择多个选项)。在 HTML 术语中,每个下拉框都由名为 select 的标签名标识。此外,其每个选项都由名为 option 的标签名标识。此外,对于多选下拉框,select 标签名还有一个名为 multiple 的属性。

在 HTML 中识别下拉框

右键单击浏览器(例如 Chrome)中的网页,然后单击“检查”按钮。然后,将显示页面的所有 HTML 代码。要检查网页上的单选下拉框,请单击 HTML 代码顶部突出显示的左上方箭头,如下图所示。

Selenium Dropdown Box 1

单击并将箭头指向文本选择一个旁边的下拉框后,其 HTML 代码可见,反映了 select 标签名(括在<>中),以及 option 标签名中的选项。

Selenium Dropdown Box 2

此处,选项选择一个标题具有 selected 属性,反映了它默认被选中的事实。

Selenium WebDriver 中的基本 Select 类方法

Selenium WebDriver 中有多个 Select 类方法。它们列在下面:

getOptions()

返回下拉框中所有选项的列表。

语法

WebDriver driver = new ChromeDriver();
WebElement e = driver.findElement(By.xpath("value of xpath"))
Select s = new Select(e);
List<WebElement> l = s.getOptions();

getFirstSelectedOption()

返回下拉框中选定的选项。如果有多个选项被选中,则只返回第一个项目。

语法

WebDriver driver = new ChromeDriver();
WebElement e = driver.findElement(By.xpath("value of xpath")
Select s = new Select(e);
l = s. getFirstSelectedOption();

isMultiple()

返回布尔值,如果下拉框允许选择多个项目,则产生 true 值。

语法

WebDriver driver = new ChromeDriver();
WebElement e = driver.findElement(By.xpath("value of xpath")
Select s = new Select(e);
boolean l = s.isMultiple();

selectByIndex()

下拉框要选择的选项的索引作为参数传递。索引从 0 开始。

语法

WebDriver driver = new ChromeDriver();
WebElement e = driver.findElement(By.xpath("value of xpath")
Select s = new Select(e);
s.selectByIndex(0);

selectByValue()

下拉框要选择的选项的 value 属性作为参数传递。下拉框中的选项应具有 value 属性,以便可以使用此方法。

语法

WebDriver driver = new ChromeDriver();
WebElement e = driver.findElement(By.xpath("value of xpath")
Select s = new Select(e);
s.selectByValue("option 1");

selectByVisibleText()

下拉框要选择的选项的可视文本作为参数传递。

语法

WebDriver driver = new ChromeDriver();
WebElement e = driver.findElement(By.xpath("value of xpath")
Select s = new Select(e);
s.selectByVisibleText("Selenium");

deselectByVisibleText()

下拉框要取消选择的选项的可视文本作为参数传递。它仅适用于多选下拉框。

语法

WebDriver driver = new ChromeDriver();
WebElement e = driver.findElement(By.xpath("value of xpath")
Select s = new Select(e);
s.deselectByVisibleText("Selenium");

deselectByValue()

下拉框要取消选择的选项的 value 属性作为参数传递。下拉框中的选项应具有 value 属性,以便可以使用此方法。它仅适用于多选下拉框。

语法

WebDriver driver = new ChromeDriver();
WebElement e = driver.findElement(By.xpath("value of xpath")
Select s = new Select(e);
s.deselectByValue("option 1");

deselectByIndex()

下拉框要取消选择的选项的索引作为参数传递。索引从 0 开始。它仅适用于多选下拉框。

语法

WebDriver driver = new ChromeDriver();
WebElement e = driver.findElement(By.xpath("value of xpath")
Select s = new Select(e);
s.deselectByIndex(0);

deselectAll()

取消选择下拉框中所有选定的选项。

语法

WebDriver driver = new ChromeDriver();
WebElement e = driver.findElement(By.xpath("value of xpath")
Select s = new Select(e);
s.deselectAll();

getAllSelectedOptions()

返回下拉框中所有选定的选项。如果有多个选项被选中,则返回 0 或多个选中选项的列表。对于单选下拉框,将返回 1 个选中选项的列表。如果下拉列表的某个选项具有 disabled 属性,则该选项将不会被选中。

示例 1

让我们以以下页面为例,我们将访问文本选择一个下方的下拉框,选择值Dr

Selenium Dropdown Box 3

代码实现

package org.example;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.support.ui.Select;
import java.util.List;
import java.util.concurrent.TimeUnit;

public class DropdownSingle {
   public static void main(String[] args) throws InterruptedException {

      // Initiate the Webdriver
      WebDriver driver = new ChromeDriver();

      // adding implicit wait of 15 secs
      driver.manage().timeouts().implicitlyWait(15, TimeUnit.SECONDS);

      // Opening the webpage where we will get dropdown
      driver.get("https://tutorialspoint.com/selenium/practice/select-menu.php");

      // identify dropdown then select its options by value
      WebElement dropdown = driver.findElement(By.xpath("//*[@id='inputGroupSelect03']"));
      Select select = new Select(dropdown);

      // get option selected by default
      WebElement o = select.getFirstSelectedOption();
      System.out.println("Option selected by default: " + o.getText());

      // select an option by value
      select.selectByValue("1");
      
      // get selected option
      List<WebElement> selectedOptions = select.getAllSelectedOptions();
      for (WebElement opt : selectedOptions){
         System.out.println("Selected Option is: " + opt.getText());
      }

      // get all options of dropdown
      List<WebElement> options =select.getOptions();
      for (WebElement opt : options){
         System.out.println("Options are: " + opt.getText());
      }

      // check if multiselect dropdown
      Boolean b = select.isMultiple();
      System.out.println("Boolean value for checking is: "+ b);

      // quitting browser
      driver.quit();
   }
}

输出

Option selected by default: Pick one title
Selected Option is: Dr.
Options are: Pick one title
Options are: Dr.
Options are: Mr.
Options are: Mrs.
Options are: Ms.
Options are: Proof.
Options are: Other
Boolean value for checking is: false

Process finished with exit code 0

在上面的示例中,我们获得了下拉框中选定的选项,控制台中的消息为 - 选定的选项是:Dr。然后获得下拉框的所有选项,控制台中的消息为 - 选项是:选择一个标题,选项是:Dr.,选项是:Africa,选项是:Mr.,选项是:Mrs.,选项是:Ms,选项是:Proof.,和选项是:Other。

我们还验证了下拉框没有多个选择选项,控制台中的消息为 - 检查的布尔值是:false。我们还检索了下拉框中默认选择的选项,控制台中的消息为 - 默认选择的选项:选择一个标题

最后,收到消息进程已完成,退出代码为 0,表示代码已成功执行。

示例 2

让我们再以以下页面为例,我们将访问文本多选下拉框旁边的多选下拉框,选择值书籍玩具、儿童和婴儿

Selenium Dropdown Box 4

代码实现

package org.example;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.support.ui.Select;
import java.util.List;
import java.util.concurrent.TimeUnit;

public class DropdownMultiple {
   public static void main(String[] args) throws InterruptedException {

      // Initiate the Webdriver
      WebDriver driver = new ChromeDriver();

      // adding implicit wait of 15 secs
      driver.manage().timeouts().implicitlyWait(15, TimeUnit.SECONDS);

      // Opening the webpage where we will get dropdown
      driver.get("https://tutorialspoint.com/selenium/practice/select-menu.php");

      // identify multiple dropdown
      WebElement dropdown = driver.findElement(By.xpath("//*[@id='demo-multiple-select']"));

      // object of Select class
      Select select = new Select(dropdown);

      // gets options of dropdown in list
      List<WebElement> options = select.getOptions();
      for (WebElement opt : options){
         System.out.println("Options are: " + opt.getText());
      }

      // return true if multi-select dropdown
      Boolean b = select.isMultiple();
      System.out.println("Boolean value for multiple dropdown: "+ b);

      // select item by index
      select.selectByIndex(5);

      // select item by visible text
      select.selectByVisibleText("Books");

      // get all selected options of dropdown in list
      List<WebElement> selectedOptions = select.getAllSelectedOptions();
      for (WebElement opt : selectedOptions){
         System.out.println("Selected Options are: " + opt.getText());
      }

      // get first selected option in dropdown
      WebElement f = select.getFirstSelectedOption();
      System.out.println("First selected option is: "+ f.getText());

      // deselect option by index
      select.deselectByIndex(5);

      // get first selected option in dropdown after deselecting
      WebElement e = select.getFirstSelectedOption();
      System.out.println("Second selected option is: "+ e.getText());

      // deselect all selected items
      select.deselectAll();

      // get all selected options of dropdown after deselected
      List<WebElement> delectedOptions = select.getAllSelectedOptions();
      System.out.println("No. options selected: " + delectedOptions.size());

      // Closing browser
      driver.quit();
   }
}

输出

Options are: Books
Options are: Movies, Music & Games
Options are: Electronics & Computers
Options are: Home, Garden & Tools
Options are: Health & Beauty
Options are: Toys, Kids & Baby
Options are: Clothing & Jewelry
Options are: Sports & Outdoors
Boolean value for multiple dropdown: true
Selected Options are: Books
Selected Options are: Toys, Kids & Baby
First selected option is: Books
Second selected option is: Books
No. options selected: 0

Process finished with exit code 0

在上例中,我们在控制台中获取了下拉菜单的所有选项,显示信息为:选项包括:书籍,选项包括:电影,音乐和游戏,选项包括:家居,花园和工具,选项包括:健康和美容,选项包括:玩具,儿童和婴儿,选项包括:服装和珠宝,选项包括:运动和户外。我们还在控制台中验证了该下拉菜单允许多选,显示信息为:用于检查的布尔值为:true

我们检索到了下拉菜单中已选择的选项,控制台显示信息为:已选择的选项包括:书籍,已选择的选项包括:玩具,儿童和婴儿。我们还获取了第一个已选择的选项,控制台显示信息为:第一个已选择的选项是:书籍

取消选择第一个已选择的选项书籍后,我们获取了第二个已选择的选项,控制台显示信息为:第二个已选择的选项是:书籍。最后,我们取消选择了下拉菜单中所有已选择的选项,因此在控制台中获取的信息为:已选择选项数量:0

结论

本教程对Selenium Webdriver下拉框进行了全面讲解。我们从描述HTML中下拉框的识别、Selenium Webdriver中基本的Select类方法以及使用示例开始,说明如何在Selenium Webdriver中使用它们。这将使您深入了解Selenium Webdriver下拉框。建议您多加练习所学内容,并探索其他与Selenium相关的知识,以加深理解并拓宽视野。

广告