使用SelectByText(部分)与C#Selenium WebDriver绑定似乎不起作用

时间:2012-04-13 00:35:25

标签: c# .net selenium webdriver selenium-webdriver

我在C#中使用Selenium WebDriver Extensions通过部分文本值从选择列表中选择一个值(实际前面有一个空格)。我无法使用部分文本匹配来使其工作。我做错了还是这个错误?

可重复的例子:

using Microsoft.VisualStudio.TestTools.UnitTesting;
using OpenQA.Selenium;
using OpenQA.Selenium.Firefox;
using OpenQA.Selenium.Support.UI;

namespace AutomatedTests
{
    [TestClass]
    public class UnitTest1
    {
        [TestMethod]
        public void TestMethod1()
        {
            var driver = new FirefoxDriver();
            driver.Navigate().GoToUrl("http://code.google.com/p/selenium/downloads/list");
            var selectList = new SelectElement(driver.FindElement(By.Id("can")));
            selectList.SelectByText("Featured downloads");
            Assert.AreEqual(" Featured downloads", selectList.SelectedOption.Text);
            selectList.SelectByValue("4");
            Assert.AreEqual("Deprecated downloads", selectList.SelectedOption.Text);
            driver.Quit();
        }
    }
}

提供错误: OpenQA.Selenium.NoSuchElementException: Cannot locate element with text: Featured downloads

2 个答案:

答案 0 :(得分:8)

SelectByText 方法已损坏,因此我编写了自己的扩展方法 SelectBySubText 来执行它的目的。

using System.Linq;
using OpenQA.Selenium;
using OpenQA.Selenium.Support.UI;

namespace AutomatedTests.Extensions
{
    public static class WebElementExtensions
    {
        public static void SelectBySubText(this SelectElement me, string subText)
        {
            foreach (var option in me.Options.Where(option => option.Text.Contains(subText)))
            {
                option.Click();
                return;
            }
            me.SelectByText(subText);
        }
    }

答案 1 :(得分:0)

如果您可以在简单的HTML页面中重现问题,那么您一定要提交错误报告。

查看source code SelectByText首先执行此操作:

FindElements(By.XPath(".//option[normalize-space(.) = " + EscapeQuotes(text) + "]"))

如果找不到任何东西,那就这样做:

string substringWithoutSpace = GetLongestSubstringWithoutSpace(text);
FindElements(By.XPath(".//option[contains(., " + EscapeQuotes(substringWithoutSpace) + ")]"))

所以理论上应该有效。你也可以自己玩XPath,看看你是否可以在你的情况下使用它。