PhantomJSWebElement ClassWebDriver
PhantomJSWebElement allows you to have access to specific items that are found on the page.
Inheritance Hierarchy

OnlineSystem Object
  OpenQA.Selenium.Remote RemoteWebElement
    OpenQA.Selenium.PhantomJS PhantomJSWebElement

Namespace: OpenQA.Selenium.PhantomJS
Assembly: WebDriver (in WebDriver.dll) Version: 2.35.0.0 (2.35.0.0)
Syntax

public class PhantomJSWebElement : RemoteWebElement
Examples

[Test]
public void TestGoogle()
{
    driver = new PhantomJSDriver();
    PhantomJSWebElement elem = driver.FindElement(By.Name("q"));
    elem.SendKeys("Cheese please!");
}
See Also