/// <summary> /// Initializes a new instance of the <see cref="T:OpenQA.Selenium.Remote.RemoteCoordinates" /> class. /// </summary> /// <param name="element">The <see cref="T:OpenQA.Selenium.Remote.RemoteWebElement" /> to be located.</param> //public RemoteCoordinates(RemoteWebElement element) //public FakeCoordinates(RemoteWebElement element) public FakeCoordinates(FakeWebElement element) { this.element = element; }
//public WebElementDecorator(RemoteWebElement realWebElement) // : base(realWebElement.WrappedDriver, "") /// <summary> /// Like decorator /// </summary> /// <param name="realWebElement"></param> public FakeWebElement(IWebElement realWebElement) { this.DecoratedWebElement = realWebElement as FakeWebElement; this.SearchHistory = new List<ISearchHistory>(); }