Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

(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 ?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.