0

我是 WebDriver 的新手,并在 C# Visual Studio 中编写此代码(下面的代码片段)我正在使用 IsElementPresent 验证主页上是否存在文本字段。我收到错误当前上下文中不存在名称 IsElementPresent。我究竟做错了什么?

using System;
using System.Text;
using System.Text.RegularExpressions;
using System.Collections.Generic;
using System.Threading;
using System.Linq;
using NUnit.Framework;
using OpenQA.Selenium;
using OpenQA.Selenium.Firefox;
using OpenQA.Selenium.Support.UI;

namespace Homepage_check2
{
    [TestFixture]
    public class Driver
    {
        IWebDriver driver;

        [SetUp]
        public void Setup()
        {
            // Create a new instance of the Firefox driver
            driver = new FirefoxDriver();
        }

        [TearDown]
        public void Teardown()
        {
            driver.Quit();
        }

        [Test]
        public void homepage()
        {
            //Navigate to the site
            driver.Navigate().GoToUrl("http://www.milkround.com");

           Assert.IsTrue(IsElementPresent(By.Id("ctl00_uxToolbar_uxQueryTextBoxToolbar")));

        }
        catch
        {
            //verificationErrors.Append(e.Message);
        }

        }
    }
}
4

1 回答 1

1

“IsElementPresent”从何而来?我从未见过在 WebDriver 中使用过。

在 WebDriver 中,您需要在 findElement 方法周围包装一个 try catch。

例如

Boolean elementDisplayed;

try {

WebElement element = driver.findElement(By.Id("ctl00_uxToolbar_uxQueryTextBoxToolbar"));
elementDisplayed = element.displayed; 

}
catch (NoSuchElementException e) {
elementDisplayed = false;
}

显然,您可以将其包装在某种辅助方法中,或者将其添加到 WebDriver 类中。

我会把它留给你,但这是一般的想法

于 2013-08-28T15:35:08.783 回答