OpenQA.Selenium.Remote.RenderedRemoteWebElement.Hover C# (CSharp) Method

Hover() public method

Moves the mouse over the element to do a hover
public Hover ( ) : void
return void
        public void Hover()
        {
            Dictionary<string, object> parameters = new Dictionary<string, object>();
            parameters.Add("id", Id);
            Parent.Execute(DriverCommand.HoverOverElement, new object[] { parameters });
        }