web-dev-qa-db-ja.com

Selenium WebDriver C#を使用してドロップダウンから値を選択します

WebDriverのC#バインディングを使用して、ドロップダウンから値を選択するのに苦労しています。私は過去にC#もWebDriverも扱ったことがありません。 Visual Studio C#2010ExpressエディションでWebDriver-Selenium-dotnet2.0b3を使用しています。ソリューションに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では、ドロップダウンの選択は非常に単純でした:-/

9
Tarun

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();
7
Matthew Kelly

ドロップダウンからオプションを選択するには、以下のコードを使用します

  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);
    
9
Madhu

OpenQA.Selenium.Support.UI名前空間で定義されている次のクラスSelectElementを使用します。WordSelectはすでに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);
4
vCillusion
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();
        }
    }
}
0
Kotes