(using webdriver with C#) my MouseOver doesn't work, can anybody help me on how to fix it to make it work
driver.FindElement(By.LinkText("Account Tools")).Click();
//opens up drop down menu
System.Threading.Thread.Sleep(2000);
//the following 'Reports' menu has a submenu drop down that will need to be selected at the last line
IWebElement report_link = driver.FindElement(By.LinkText("Reports"));
System.Threading.Thread.Sleep(2000);
Actions builder = new Actions(driver);
builder.MoveToElement(report_link).Build().Perform(); //no need to be clicked, this part doesn't work
System.Threading.Thread.Sleep(1000);
IWebElement submenu1 = driver.FindElement(By.LinkText("Commercial Hosted Orders Report"));
builder.MoveToElement(submenu1).Build().Perform();
System.Threading.Thread.Sleep(1000);
builder.Click(); //this part doesn't work
can anybody help me on what am I doing wrong ?