OpenQA.Selenium.Support.UI.SelectElement NOT Found
正如您在代码图片中看到的那样,我已经输入了'使用'我需要使用的库。但是,它告诉我" SelectElement"不存在。有没有人知道如何添加正确的库?
点击上面的链接,您将看到代码图片。
以下是代码段:
using OpenQA.Selenium;
using OpenQA.Selenium.Firefox;
using OpenQA.Selenium.Support;
using OpenQA.Selenium.Support.UI;
using OpenQA.Selenium.Support.UI.SelectElement;
using NUnit.Framework;
namespace ToolsQA.Selenium_Basics
{
class DropDownAndSelectOperations
{
[Test]
public void Test()
{
// Create a new instance of the Firfox Driver
IWebDriver driver = new FirefoxDriver();
driver.Manage().Timeouts().ImplicitWait = TimeSpan.
FromSeconds(10);
// Launch the URL
driver.Url = "http://toolsqa.wpengine.com/automation-practice-
form";
// Step 3: Select "Continents" drop down (Use Id to identify the
element)
// Find "Select" element of "Single Selection" using Id locator.
*SelectElement* oSelection = new
SelectElement(driver.FindElement(By.Id("continents")));
答案 0 :(得分:0)
您需要通过NuGet添加Selenium Support包。这应该可以解决问题。