7

我在 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

4

2 回答 2

10

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);
        }
    }
于 2012-04-16T01:14:56.050 回答
0

如果您可以在一个简单的 HTML 页面中重现该问题,那么您绝对应该提交一份错误报告。

首先查看源代码 SelectByText

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

如果它没有找到任何东西,那么这样做:

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

所以理论上它应该工作。您也可以自己使用 XPath,看看是否可以让它在您的情况下工作。

于 2012-04-13T16:16:29.883 回答