在 Java 中使用 Selenium WebDriver 选择下拉值
使用 Selenium WebDriver 自动化 Web 应用程序时,从下拉列表中选择值是一个常见的要求。在 Java 中,这可以使用 Select 类来实现,该类包装了代表下拉列表的 WebElement。
要使用 id="periodId" 的 HTML 标记标识的下拉列表:
<code class="java">Select dropdown = new Select(driver.findElement(By.id("periodId")));</code>
一旦有了 Select 对象,您就可以通过多种方式选择值:
<code class="java">dropdown.selectByVisibleText("Last 52 Weeks");</code>
这将选择可见文本匹配的选项指定的字符串。
<code class="java">dropdown.selectByIndex(1);</code>
这将根据其在下拉列表中的位置(从 0 开始)选择选项。
<code class="java">dropdown.selectByValue("l52w");</code>
这将选择值属性与指定值匹配的选项。
以上是如何在 Java 中使用 Selenium WebDriver 选择下拉值?的详细内容。更多信息请关注PHP中文网其他相关文章!