9

我很难使用 WebDriver 的 C# 绑定从下拉列表中选择值。我过去既没有研究过 C#,也没有研究过 WebDriver。我正在使用 WebDriver - Selenium-dotnet2.0b3 和 Visual Studio C# 2010 Express 版本。我已将 WebDriver.Common、WebDriver.Firefox 和 WebDriver.Remote 添加到我的解决方案中。我试过用这个 -

IWebElement dateOfBirth = webdriver.FindElement(By.Id("join_birth_day"));
List<IWebElement> dateOfBirthOptions = (List<IWebElement>)dateOfBirth.FindElement(By.TagName("option"));

foreach(IWebElement dateOfBirthOption in dateOfBirthOptions)  
{
    if (dateOfBirthOption.Equals("3"))
    {
        dateOfBirthOption.Select();
    }
}

但是在 NUnit 中运行我的解决方案时看到了错误

LiveCams.CreateAccount.createAccount:
System.InvalidCastException : Unable to cast object of type 'OpenQA.Selenium.Firefox.FirefoxWebElement' to type 'System.Collections.Generic.List`1[OpenQA.Selenium.IWebElement]'.

如果我不投,那么甚至无法构建解决方案。我想我在这里遗漏了一些琐碎的事情。有谁能在这里指导我吗?在 Selenium 1.0 中,下拉选择曾经非常简单:-/

4

4 回答 4

10

要从下拉菜单中选择一个选项,请使用以下代码

  1. 根据文本选择值

    new SelectElement(driver.FindElement(By.XPath(""))).SelectByText("");
    
  2. 根据值选择值

    new SelectElement(driver.FindElement(By.XPath(""))).SelectByValue("");
    
  3. 根据索引选择值

    new SelectElement(driver.FindElement(By.XPath(""))).SelectByIndex(0);
    
于 2015-07-08T11:48:12.440 回答
7

1) 使用已评论的 SelectElement -如何使用 Selenium WebDriver C# 从下拉列表中选择一个选项? SelectElement 属于OpenQA.Selenium.Support.UI命名空间。

2)你也可以用css选择器做这样的事情:

WebElement dateOfBirth =  webdriver.FindElement(By.Id("join_birth_day"))
                              .FindElement(By.CssSelector("option[value='3']")).Select();
于 2011-03-30T09:42:54.260 回答
4

使用 OpenQA.Selenium.Support.UI 命名空间中定义的以下类 SelectElement,该词Select已在 C# 中使用,这就是其实现被更改且类名称不同的原因。

    // Summary:
    //     Initializes a new instance of the SelectElement class.
    //
    // Parameters: element - The element to be wrapped
    //
    public SelectElement(IWebElement element);

创建这个类的一个对象,并且有基于索引、文本和值的选择选项。

    // Summary:
    //     Select the option by the index, as determined by the "index" attribute of
    //     the element.
    //
    // Parameters:
    //   index:
    //     The value of the index attribute of the option to be selected.
    public void SelectByIndex(int index);

    // Summary:
    //     Select all options by the text displayed.
    //
    // Parameters:
    //   text:
    //     The text of the option to be selected. If an exact match is not found, this
    //     method will perform a substring match.
    // Remarks:
    //     When given "Bar" this method would select an option like:
    //     <option value="foo">Bar</option>
    public void SelectByText(string text);

    // Summary:
    //     Select an option by the value.
    //
    // Parameters:
    //   value:
    //     The value of the option to be selected.
    // Remarks:
    //     When given "foo" this method will select an option like:
    //     <option value="foo">Bar</option>
    public void SelectByValue(string value);
于 2014-05-14T12:20:37.067 回答
0
using System;
using System.Collections.Generic;
using OpenQA.Selenium;
using OpenQA.Selenium.Firefox;
using OpenQA.Selenium.Support.UI;

namespace SeleniumTests {
    class DropDownListSelection {
        static void Main(string[] args) {
            IWebDriver driver = new FirefoxDriver();
            driver.Navigate().GoToUrl("http://YourDDListpageURL.html");
            IWebElement element = driver.FindElement(By.XPath("//Select"));
            //You can locate the element by using the ID / Name as well IList
            AllDropDownList = element.FindElements(By.XPath("//option"));
            int DpListCount = AllDropDownList.Count;
            for (int i = 0; i < DpListCount; i++) {
                if (AllDropDownList[i].Text == "Coffee") {
                    AllDropDownList[i].Click();
                }
            }
            Console.WriteLine(DpListCount);
            Console.ReadLine();
        }
    }
}
于 2015-05-25T20:31:16.153 回答