Selenium WebDriver issues

本文关键字:issues WebDriver Selenium | 更新日期: 2023-09-27 18:22:11

在c#selenium WebDriver中,如何从包含"是"answers"否"的下拉列表中验证"是"是否显示在网站页面上?

我在这个页面上有多个下拉选项,包含"是"answers"否"。如何指定我想要的选项?

我尝试识别所使用的元素,但不起作用

Selenium WebDriver issues

public class SelectElement
    OpenQA.Selenium.Support.UI
Сводка:
Provides a convenience method for manipulating selections of options in an HTML select element.

看看Selenium Support UI(WebDriver.Support.dll)

SelectElement se = new SelectElement(driver.FindElement(By.id("select_element_id")));
se.SelectByText("Item1");